diff options
author | Florian Fainelli <florian@openwrt.org> | 2010-03-02 21:49:37 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2010-03-02 21:49:37 +0000 |
commit | 2c13d45b2934296b72edbde51bb8b342ec0068e9 (patch) | |
tree | 823625b35a3fcd4378a7d856f66487ca2d5cfc43 /target/linux/brcm63xx/patches-2.6.33 | |
parent | f88371a696184b163f5a7ddd48df16c1c81e7305 (diff) | |
download | upstream-2c13d45b2934296b72edbde51bb8b342ec0068e9.tar.gz upstream-2c13d45b2934296b72edbde51bb8b342ec0068e9.tar.bz2 upstream-2c13d45b2934296b72edbde51bb8b342ec0068e9.zip |
do not register devices in device_initcall level, this breaks the SSB SPROM registration
SVN-Revision: 19957
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.patch | 16 |
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); |