aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/brcm47xx/patches-3.3
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2012-10-17 21:53:37 +0000
committerJohn Crispin <blogic@openwrt.org>2012-10-17 21:53:37 +0000
commitfb47a917c207afa0631518b0b7a80e19ac0c796d (patch)
tree7119a1430707d10597e1c1a4cb2d4189cb396fbd /target/linux/brcm47xx/patches-3.3
parentc921e6607e2a0db1af65834d172f83d59268b71e (diff)
downloadupstream-fb47a917c207afa0631518b0b7a80e19ac0c796d.tar.gz
upstream-fb47a917c207afa0631518b0b7a80e19ac0c796d.tar.bz2
upstream-fb47a917c207afa0631518b0b7a80e19ac0c796d.zip
drop GPIODEV platform code
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33825 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/brcm47xx/patches-3.3')
-rw-r--r--target/linux/brcm47xx/patches-3.3/400-arch-bcm47xx.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/target/linux/brcm47xx/patches-3.3/400-arch-bcm47xx.patch b/target/linux/brcm47xx/patches-3.3/400-arch-bcm47xx.patch
index 784562dc74..a232bff91c 100644
--- a/target/linux/brcm47xx/patches-3.3/400-arch-bcm47xx.patch
+++ b/target/linux/brcm47xx/patches-3.3/400-arch-bcm47xx.patch
@@ -31,26 +31,3 @@
+ return NULL;
+}
+EXPORT_SYMBOL(nvram_get);
---- a/arch/mips/bcm47xx/setup.c
-+++ b/arch/mips/bcm47xx/setup.c
-@@ -381,3 +381,20 @@ static int __init bcm47xx_register_flash
- return -1;
- }
- fs_initcall(bcm47xx_register_flash);
-+
-+static int __init bcm47xx_register_gpiodev(void)
-+{
-+ static struct resource res = {
-+ .start = 0xFFFFFFFF,
-+ };
-+ struct platform_device *pdev;
-+
-+ pdev = platform_device_register_simple("GPIODEV", 0, &res, 1);
-+ if (!pdev) {
-+ printk(KERN_ERR "bcm47xx: GPIODEV init failed\n");
-+ return -ENODEV;
-+ }
-+
-+ return 0;
-+}
-+device_initcall(bcm47xx_register_gpiodev);