Changeset b6e97d7 in mainline for kernel/arch/mips32/include/byteorder.h
- Timestamp:
- 2006-12-21T09:23:34Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b2e5e25
- Parents:
- b84ce45
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/include/byteorder.h
rb84ce45 rb6e97d7 40 40 #ifdef BIG_ENDIAN 41 41 42 #define uint32_t_le2host(n) uint 64_t_byteorder_swap(n)43 #define uint64_t_le2host(n) uint 32_t_byteorder_swap(n)42 #define uint32_t_le2host(n) uint32_t_byteorder_swap(n) 43 #define uint64_t_le2host(n) uint64_t_byteorder_swap(n) 44 44 45 45 #define uint32_t_be2host(n) (n) … … 51 51 #define uint64_t_le2host(n) (n) 52 52 53 #define uint32_t_be2host(n) uint 64_t_byteorder_swap(n)54 #define uint64_t_be2host(n) uint 32_t_byteorder_swap(n)53 #define uint32_t_be2host(n) uint32_t_byteorder_swap(n) 54 #define uint64_t_be2host(n) uint64_t_byteorder_swap(n) 55 55 56 56 #endif
Note:
See TracChangeset
for help on using the changeset viewer.