diff options
| author | Wolfgang Denk <wd@pollux.denx.de> | 2005-10-13 16:45:02 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@pollux.denx.de> | 2005-10-13 16:45:02 +0200 | 
| commit | 77ddac9480d63a80b6bb76d7ee4dcc2d1070867e (patch) | |
| tree | e9563b2f28ea59062b90bb5712f141e8e9798aee /include/linux/byteorder/swab.h | |
| parent | 17a8b276ba2b3499b75cd60b0b5289dbbea7967b (diff) | |
| download | olio-uboot-2014.01-77ddac9480d63a80b6bb76d7ee4dcc2d1070867e.tar.xz olio-uboot-2014.01-77ddac9480d63a80b6bb76d7ee4dcc2d1070867e.zip | |
Cleanup for GCC-4.x
Diffstat (limited to 'include/linux/byteorder/swab.h')
| -rw-r--r-- | include/linux/byteorder/swab.h | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/include/linux/byteorder/swab.h b/include/linux/byteorder/swab.h index 03468f708..b1d570e52 100644 --- a/include/linux/byteorder/swab.h +++ b/include/linux/byteorder/swab.h @@ -96,7 +96,7 @@  #endif /* OPTIMIZE */ -static __inline__ __const__ __u16 __fswab16(__u16 x) +static __inline__ __attribute__((const)) __u16 __fswab16(__u16 x)  {  	return __arch__swab16(x);  } @@ -109,7 +109,7 @@ static __inline__ void __swab16s(__u16 *addr)  	__arch__swab16s(addr);  } -static __inline__ __const__ __u32 __fswab32(__u32 x) +static __inline__ __attribute__((const)) __u32 __fswab32(__u32 x)  {  	return __arch__swab32(x);  } @@ -123,7 +123,7 @@ static __inline__ void __swab32s(__u32 *addr)  }  #ifdef __BYTEORDER_HAS_U64__ -static __inline__ __const__ __u64 __fswab64(__u64 x) +static __inline__ __attribute__((const)) __u64 __fswab64(__u64 x)  {  #  ifdef __SWAB_64_THRU_32__  	__u32 h = x >> 32; |