Changeset 7f1c620 in mainline for arch/ia64/src/fpu_context.c


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/ia64/src/fpu_context.c

    r991779c5 r7f1c620  
    283283void fpu_enable(void)
    284284{
    285                 __u64 a = 0 ;
     285                uint64_t a = 0 ;
    286286                asm volatile(
    287287                        "rsm %0;;"
     
    305305{
    306306
    307                 __u64 a = 0 ;
     307                uint64_t a = 0 ;
    308308                asm volatile(
    309309                        "ssm %0;;\n"
     
    326326void fpu_init(void)
    327327{
    328                 __u64 a = 0 ;
     328                uint64_t a = 0 ;
    329329                asm volatile
    330330                (
Note: See TracChangeset for help on using the changeset viewer.