From 897a534e8b5fe7ef1d6b8eaee3b57eb7d637e1de Mon Sep 17 00:00:00 2001 From: florian Date: Sun, 12 Sep 2010 21:23:47 +0000 Subject: [brcm63xx] remove 2.6.33 support git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23037 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../012-mips_add_readl_writel_be_accessors.patch | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 target/linux/brcm63xx/patches-2.6.33/012-mips_add_readl_writel_be_accessors.patch (limited to 'target/linux/brcm63xx/patches-2.6.33/012-mips_add_readl_writel_be_accessors.patch') diff --git a/target/linux/brcm63xx/patches-2.6.33/012-mips_add_readl_writel_be_accessors.patch b/target/linux/brcm63xx/patches-2.6.33/012-mips_add_readl_writel_be_accessors.patch deleted file mode 100644 index 71b715dcf..000000000 --- a/target/linux/brcm63xx/patches-2.6.33/012-mips_add_readl_writel_be_accessors.patch +++ /dev/null @@ -1,19 +0,0 @@ -MIPS currently lacks the readl_be and writel_be accessors -which are required by BCM63xx for OHCI and EHCI support. -Let's define them globally for MIPS. This also fixes the -compilation of the bcm63xx defconfig against USB. - -Signed-off-by: Florian Fainelli ---- ---- a/arch/mips/include/asm/io.h -+++ b/arch/mips/include/asm/io.h -@@ -447,6 +447,9 @@ __BUILDIO(q, u64) - #define readl_relaxed readl - #define readq_relaxed readq - -+#define readl_be(addr) be32_to_cpu(__raw_readl((__force unsigned *)(addr))) -+#define writel_be(val, addr) __raw_writel(cpu_to_be32((val)), (__force unsigned *)(addr)) -+ - /* - * Some code tests for these symbols - */ -- cgit v1.2.3