aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/brcm63xx/patches-2.6.33
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2010-03-02 21:49:37 +0000
committerFlorian Fainelli <florian@openwrt.org>2010-03-02 21:49:37 +0000
commit2abf2ff3100920e7c37e7ccf11969c2b85a22cd2 (patch)
tree9dde9bcc8c59edc5a7a069b1f396492ee944c0f6 /target/linux/brcm63xx/patches-2.6.33
parent66d7b24082a2510abb0216307bffb4adf794b5a6 (diff)
downloadmaster-187ad058-2abf2ff3100920e7c37e7ccf11969c2b85a22cd2.tar.gz
master-187ad058-2abf2ff3100920e7c37e7ccf11969c2b85a22cd2.tar.bz2
master-187ad058-2abf2ff3100920e7c37e7ccf11969c2b85a22cd2.zip
[brcm63xx] do not register devices in device_initcall level, this breaks the SSB SPROM registration
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19957 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/brcm63xx/patches-2.6.33')
-rw-r--r--target/linux/brcm63xx/patches-2.6.33/200-call_board_register_device_from_device_initcall.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/target/linux/brcm63xx/patches-2.6.33/200-call_board_register_device_from_device_initcall.patch b/target/linux/brcm63xx/patches-2.6.33/200-call_board_register_device_from_device_initcall.patch
deleted file mode 100644
index e7c71779c4..0000000000
--- a/target/linux/brcm63xx/patches-2.6.33/200-call_board_register_device_from_device_initcall.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Some device registration (eg leds), expect subsystem initcall to be
-run first, so move board device registration to device_initcall().
-
-Signed-off-by: Maxime Bizon <mbizon@freebox.fr>
----
- arch/mips/bcm63xx/setup.c | 2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
---- a/arch/mips/bcm63xx/setup.c
-+++ b/arch/mips/bcm63xx/setup.c
-@@ -124,4 +124,4 @@ int __init bcm63xx_register_devices(void
- return board_register_devices();
- }
-
--arch_initcall(bcm63xx_register_devices);
-+device_initcall(bcm63xx_register_devices);