From d9ee6839ae8d992a82e5a58ff87c5d765c006b4d Mon Sep 17 00:00:00 2001 From: Andrew Morton Date: Tue, 28 Jun 2005 20:44:54 -0700 Subject: [PATCH] --- yaml --- r: 3883 b: refs/heads/master c: 05133fc498e788e1c1ca4e906f9e05d9779fd63b h: refs/heads/master i: 3881: b2702876f1d1eff08a534e7ee087344727b9941e 3879: 40f974e09aedca8b77eb29bb9aef9ac0fdd09729 v: v3 --- [refs] | 2 +- trunk/include/linux/byteorder/swabb.h | 17 ++++++++++------- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/[refs] b/[refs] index 213aa045d37e..f915ca976b17 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: b79646e3dd51b389b2a570b454f8e2fb7a613e37 +refs/heads/master: 05133fc498e788e1c1ca4e906f9e05d9779fd63b diff --git a/trunk/include/linux/byteorder/swabb.h b/trunk/include/linux/byteorder/swabb.h index d28d9a804d3b..d5f2a3205109 100644 --- a/trunk/include/linux/byteorder/swabb.h +++ b/trunk/include/linux/byteorder/swabb.h @@ -92,29 +92,32 @@ #endif /* OPTIMIZE */ -static __inline__ __const__ __u32 __fswahw32(__u32 x) +static inline __u32 __fswahw32(__u32 x) { return __arch__swahw32(x); } -static __inline__ __u32 __swahw32p(__u32 *x) + +static inline __u32 __swahw32p(__u32 *x) { return __arch__swahw32p(x); } -static __inline__ void __swahw32s(__u32 *addr) + +static inline void __swahw32s(__u32 *addr) { __arch__swahw32s(addr); } - -static __inline__ __const__ __u32 __fswahb32(__u32 x) +static inline __u32 __fswahb32(__u32 x) { return __arch__swahb32(x); } -static __inline__ __u32 __swahb32p(__u32 *x) + +static inline __u32 __swahb32p(__u32 *x) { return __arch__swahb32p(x); } -static __inline__ void __swahb32s(__u32 *addr) + +static inline void __swahb32s(__u32 *addr) { __arch__swahb32s(addr); }