aboutsummaryrefslogtreecommitdiff
path: root/include/asm-cris/arch-v32/byteorder.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-cris/arch-v32/byteorder.h')
-rw-r--r--include/asm-cris/arch-v32/byteorder.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-cris/arch-v32/byteorder.h b/include/asm-cris/arch-v32/byteorder.h
index 74846ee6cf9..6ef8fb4a35f 100644
--- a/include/asm-cris/arch-v32/byteorder.h
+++ b/include/asm-cris/arch-v32/byteorder.h
@@ -3,14 +3,14 @@
#include <asm/types.h>
-extern __inline__ __const__ __u32
+static inline __const__ __u32
___arch__swab32(__u32 x)
{
__asm__ __volatile__ ("swapwb %0" : "=r" (x) : "0" (x));
return (x);
}
-extern __inline__ __const__ __u16
+static inline __const__ __u16
___arch__swab16(__u16 x)
{
__asm__ __volatile__ ("swapb %0" : "=r" (x) : "0" (x));