Changeset 7f1c620 in mainline for arch/ppc32/include/asm.h


Ignore:
Timestamp:
2006-07-04T17:17:56Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0ffa3ef5
Parents:
991779c5
Message:

Replace old u?? types with respective C99 variants (e.g. uint32_t, int64_t, uintptr_t etc.).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ppc32/include/asm.h

    r991779c5 r7f1c620  
    129129 * The stack must start on page boundary.
    130130 */
    131 static inline __address get_stack_base(void)
     131static inline uintptr_t get_stack_base(void)
    132132{
    133         __address v;
     133        uintptr_t v;
    134134       
    135135        asm volatile (
     
    146146
    147147void cpu_halt(void);
    148 void asm_delay_loop(__u32 t);
     148void asm_delay_loop(uint32_t t);
    149149
    150 extern void userspace_asm(__address uspace_uarg, __address stack, __address entry);
     150extern void userspace_asm(uintptr_t uspace_uarg, uintptr_t stack, uintptr_t entry);
    151151
    152152#endif
Note: See TracChangeset for help on using the changeset viewer.