Changeset 7f1c620 in mainline for arch/sparc64/include/byteorder.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/sparc64/include/byteorder.h

    r991779c5 r7f1c620  
    3939#include <byteorder.h>
    4040
    41 static inline __u64 __u64_le2host(__u64 n)
     41static inline uint64_t uint64_t_le2host(uint64_t n)
    4242{
    43         return __u64_byteorder_swap(n);
     43        return uint64_t_byteorder_swap(n);
    4444}
    4545
    46 static inline __native __native_le2host(__native n)
     46static inline unative_t unative_t_le2host(unative_t n)
    4747{
    48         return __u64_byteorder_swap(n);
     48        return uint64_t_byteorder_swap(n);
    4949}
    5050
Note: See TracChangeset for help on using the changeset viewer.