mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 19:35:19 +02:00
35009bdf80
The fallback sprom handler was installed too late, resulting in ssb failing to get a valid sprom on some devices. Fixes #11384. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31638 3c298f89-4303-0410-b956-a3cf2f4a3e73
22 lines
740 B
Diff
22 lines
740 B
Diff
From d42f3f75a5d1abe9f7c5275fb59f3e894e83043d Mon Sep 17 00:00:00 2001
|
|
From: Jonas Gorski <jonas.gorski@gmail.com>
|
|
Date: Sun, 6 May 2012 15:05:48 +0200
|
|
Subject: [PATCH 1/2] MIPS: BCM63XX: register devices earlier
|
|
|
|
Register devices as an arch initcall so that the fallback sprom gets
|
|
installed in the same phase as the pci bus gets registered.
|
|
|
|
Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
|
|
---
|
|
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
|
|
@@ -150,4 +150,4 @@ int __init bcm63xx_register_devices(void
|
|
return board_register_devices();
|
|
}
|
|
|
|
-device_initcall(bcm63xx_register_devices);
|
|
+arch_initcall(bcm63xx_register_devices);
|