From: Andy P. <at...@us...> - 2002-04-09 12:44:27
|
Update of /cvsroot/linux-vax/kernel-2.4/include/linux/byteorder In directory usw-pr-cvs1:/tmp/cvs-serv17906/linux/byteorder Modified Files: swab.h swabb.h Log Message: sync 2.4.15 commit 3 Index: swab.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/include/linux/byteorder/swab.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -r1.1.1.1 -r1.2 --- swab.h 14 Jan 2001 16:48:34 -0000 1.1.1.1 +++ swab.h 9 Apr 2002 12:44:17 -0000 1.2 @@ -128,34 +128,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; @@ -165,11 +165,11 @@ 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); } Index: swabb.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/include/linux/byteorder/swabb.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -r1.1.1.1 -r1.2 --- swabb.h 14 Jan 2001 16:48:34 -0000 1.1.1.1 +++ swabb.h 9 Apr 2002 12:44:17 -0000 1.2 @@ -92,29 +92,29 @@ #endif /* OPTIMIZE */ -extern __inline__ __const__ __u32 __fswahw32(__u32 x) +static __inline__ __const__ __u32 __fswahw32(__u32 x) { return __arch__swahw32(x); } -extern __inline__ __u32 __swahw32p(__u32 *x) +static __inline__ __u32 __swahw32p(__u32 *x) { return __arch__swahw32p(x); } -extern __inline__ void __swahw32s(__u32 *addr) +static __inline__ void __swahw32s(__u32 *addr) { __arch__swahw32s(addr); } -extern __inline__ __const__ __u32 __fswahb32(__u32 x) +static __inline__ __const__ __u32 __fswahb32(__u32 x) { return __arch__swahb32(x); } -extern __inline__ __u32 __swahb32p(__u32 *x) +static __inline__ __u32 __swahb32p(__u32 *x) { return __arch__swahb32p(x); } -extern __inline__ void __swahb32s(__u32 *addr) +static __inline__ void __swahb32s(__u32 *addr) { __arch__swahb32s(addr); } |