aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/adm5120-2.6/patches/008-adm5120_hardware_swab.patch
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2007-06-30 15:23:06 +0000
committerGabor Juhos <juhosg@openwrt.org>2007-06-30 15:23:06 +0000
commitb2f25e0fcb5d5a5b0b0d2f3175fb8fd0bb17c532 (patch)
treecbca4b63f79cd48c18382f10b927126a9656d090 /target/linux/adm5120-2.6/patches/008-adm5120_hardware_swab.patch
parent5074eb5ac713242afa6e3899bcc8c3652c8f896b (diff)
downloadupstream-b2f25e0fcb5d5a5b0b0d2f3175fb8fd0bb17c532.tar.gz
upstream-b2f25e0fcb5d5a5b0b0d2f3175fb8fd0bb17c532.tar.bz2
upstream-b2f25e0fcb5d5a5b0b0d2f3175fb8fd0bb17c532.zip
restore right patches for 2.6.21.5
SVN-Revision: 7800
Diffstat (limited to 'target/linux/adm5120-2.6/patches/008-adm5120_hardware_swab.patch')
-rw-r--r--target/linux/adm5120-2.6/patches/008-adm5120_hardware_swab.patch38
1 files changed, 38 insertions, 0 deletions
diff --git a/target/linux/adm5120-2.6/patches/008-adm5120_hardware_swab.patch b/target/linux/adm5120-2.6/patches/008-adm5120_hardware_swab.patch
new file mode 100644
index 0000000000..6b0fe55edf
--- /dev/null
+++ b/target/linux/adm5120-2.6/patches/008-adm5120_hardware_swab.patch
@@ -0,0 +1,38 @@
+--- linux-2.6.19.2/include/asm-mips/byteorder.h 2007-01-10 20:10:37.000000000 +0100
++++ linux-2.6.19.2.new/include/asm-mips/byteorder.h 2007-05-16 21:14:47.000000000 +0200
+@@ -58,6 +58,35 @@
+
+ #endif /* CONFIG_CPU_MIPSR2 */
+
++#ifdef CONFIG_ADM5120_HARDWARE_SWAB
++
++static __inline__ __attribute_const__ __u16 ___adm5120__swab16(__u16 x)
++{
++ __asm__ (
++ " sh %2, 0xCA(%1) \n"
++ " lhu %0, 0xCC(%1) \n"
++ : "=r" (x)
++ : "r" (0xB2000000), "r" (x));
++
++ return x;
++}
++
++static __inline__ __attribute_const__ __u32 ___adm5120__swab32(__u32 x)
++{
++ __asm__ (
++ " sw %2, 0xC8(%1) \n"
++ " lw %0, 0xCC(%1) \n"
++ : "=r" (x)
++ : "r" (0xB2000000), "r" (x));
++
++ return x;
++}
++
++#define __arch__swab16(x) ___adm5120__swab16(x)
++#define __arch__swab32(x) ___adm5120__swab32(x)
++
++#endif /* CONFIG_ADM5120_HARDWARE_SWAB */
++
+ #if !defined(__STRICT_ANSI__) || defined(__KERNEL__)
+ # define __BYTEORDER_HAS_U64__
+ # define __SWAB_64_THRU_32__