[kernel] upgrade to 2.6.25.7, and refresh patches
[openwrt/svn-archive/archive.git] / target / linux / brcm47xx / patches-2.6.25 / 620-ssb-modinit-fix.patch
1 --- a/drivers/ssb/main.c
2 +++ b/drivers/ssb/main.c
3 @@ -1173,7 +1173,9 @@
4 /* ssb must be initialized after PCI but before the ssb drivers.
5 * That means we must use some initcall between subsys_initcall
6 * and device_initcall. */
7 -fs_initcall(ssb_modinit);
8 +//FIXME on embedded we need to be early to make sure we can register
9 +// a new PCI bus, if needed.
10 +subsys_initcall(ssb_modinit);
11
12 static void __exit ssb_modexit(void)
13 {