Changeset b84ce45 in mainline


Ignore:
Timestamp:
2006-12-21T08:40:42Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b6e97d7
Parents:
0af7a09
Message:

Fix mismatched byteswapping macros on sparc64.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/sparc64/include/byteorder.h

    r0af7a09 rb84ce45  
    3838#include <byteorder.h>
    3939
    40 #define uint32_t_le2host(n)             uint64_t_byteorder_swap(n)
    41 #define uint64_t_le2host(n)             uint32_t_byteorder_swap(n)
     40#define uint32_t_le2host(n)             uint32_t_byteorder_swap(n)
     41#define uint64_t_le2host(n)             uint64_t_byteorder_swap(n)
    4242
    4343#define uint32_t_be2host(n)             (n)
Note: See TracChangeset for help on using the changeset viewer.