diff options
author | wdenk <wdenk> | 2004-02-07 01:27:10 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-02-07 01:27:10 +0000 |
commit | f4863a7aec41f1f78fe93eade700b15b287a5ef7 (patch) | |
tree | 12822de96f90354447a6b7a7f36bbc06f46cc57e /include/linux/byteorder | |
parent | ba56f625767d058b0e05a22729de13be5e0f6334 (diff) | |
download | u-boot-imx-f4863a7aec41f1f78fe93eade700b15b287a5ef7.zip u-boot-imx-f4863a7aec41f1f78fe93eade700b15b287a5ef7.tar.gz u-boot-imx-f4863a7aec41f1f78fe93eade700b15b287a5ef7.tar.bz2 |
* Patch by liang a lei, 9 Jan 2004:
Fix Intel 28F128J3 ID in include/flash.h
* Patch by Masami Komiya, 09 Jan 2004:
add support for TB0229 board (NEC VR4131 MIPS processor)
* Patch by Leon Kukovec, 12 Dec 2003:
changed extern __inline__ into static __inline__ in
include/linux/byteorder/swab.h
Diffstat (limited to 'include/linux/byteorder')
-rw-r--r-- | include/linux/byteorder/swab.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/include/linux/byteorder/swab.h b/include/linux/byteorder/swab.h index 755a821..03468f7 100644 --- a/include/linux/byteorder/swab.h +++ b/include/linux/byteorder/swab.h @@ -96,34 +96,34 @@ #endif /* OPTIMIZE */ -extern __inline__ __const__ __u16 __fswab16(__u16 x) +static __inline__ __const__ __u16 __fswab16(__u16 x) { return __arch__swab16(x); } -extern __inline__ __u16 __swab16p(__u16 *x) +static __inline__ __u16 __swab16p(__u16 *x) { return __arch__swab16p(x); } -extern __inline__ void __swab16s(__u16 *addr) +static __inline__ void __swab16s(__u16 *addr) { __arch__swab16s(addr); } -extern __inline__ __const__ __u32 __fswab32(__u32 x) +static __inline__ __const__ __u32 __fswab32(__u32 x) { return __arch__swab32(x); } -extern __inline__ __u32 __swab32p(__u32 *x) +static __inline__ __u32 __swab32p(__u32 *x) { return __arch__swab32p(x); } -extern __inline__ void __swab32s(__u32 *addr) +static __inline__ void __swab32s(__u32 *addr) { __arch__swab32s(addr); } #ifdef __BYTEORDER_HAS_U64__ -extern __inline__ __const__ __u64 __fswab64(__u64 x) +static __inline__ __const__ __u64 __fswab64(__u64 x) { # ifdef __SWAB_64_THRU_32__ __u32 h = x >> 32; @@ -133,11 +133,11 @@ extern __inline__ __const__ __u64 __fswab64(__u64 x) return __arch__swab64(x); # endif } -extern __inline__ __u64 __swab64p(__u64 *x) +static __inline__ __u64 __swab64p(__u64 *x) { return __arch__swab64p(x); } -extern __inline__ void __swab64s(__u64 *addr) +static __inline__ void __swab64s(__u64 *addr) { __arch__swab64s(addr); } |