diff options
author | Graeme Russ <graeme.russ@gmail.com> | 2008-09-07 07:08:42 +1000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-09-09 11:48:53 +0200 |
commit | 3ef96ded38a8d33b58b9fab9cd879d51ddac4cbd (patch) | |
tree | b40a0685df1836f251fab53f4a767bb7287e0d03 /include/asm-i386/byteorder.h | |
parent | 5608692104efa8d56df803dc79ea41ac3607eee5 (diff) | |
download | u-boot-imx-3ef96ded38a8d33b58b9fab9cd879d51ddac4cbd.zip u-boot-imx-3ef96ded38a8d33b58b9fab9cd879d51ddac4cbd.tar.gz u-boot-imx-3ef96ded38a8d33b58b9fab9cd879d51ddac4cbd.tar.bz2 |
Update i386 code (sc520_cdp)
Attempt to bring i386 / sc520 inline with master
Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
Diffstat (limited to 'include/asm-i386/byteorder.h')
-rw-r--r-- | include/asm-i386/byteorder.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-i386/byteorder.h b/include/asm-i386/byteorder.h index a9c69d5..7dfeb8b 100644 --- a/include/asm-i386/byteorder.h +++ b/include/asm-i386/byteorder.h @@ -6,7 +6,7 @@ #ifdef __GNUC__ -static __inline__ __const__ __u32 ___arch__swab32(__u32 x) +static __inline__ __u32 ___arch__swab32(__u32 x) { #ifdef CONFIG_X86_BSWAP __asm__("bswap %0" : "=r" (x) : "0" (x)); @@ -20,7 +20,7 @@ static __inline__ __const__ __u32 ___arch__swab32(__u32 x) return x; } -static __inline__ __const__ __u16 ___arch__swab16(__u16 x) +static __inline__ __u16 ___arch__swab16(__u16 x) { __asm__("xchgb %b0,%h0" /* swap bytes */ \ : "=q" (x) \ |