kernel: move the bcma fallback sprom fix to generic

bcm63xx needs the bcma fallback sprom fix, too.

SVN-Revision: 33896
This commit is contained in:
Jonas Gorski
2012-10-23 10:57:49 +00:00
parent 0cc4bed41c
commit 0d2cf5f9e3

View File

@@ -0,0 +1,15 @@
--- a/drivers/bcma/sprom.c
+++ b/drivers/bcma/sprom.c
@@ -591,8 +591,11 @@ int bcma_sprom_get(struct bcma_bus *bus)
bcma_chipco_bcm4331_ext_pa_lines_ctl(&bus->drv_cc, true);
err = bcma_sprom_valid(sprom);
- if (err)
+ if (err) {
+ bcma_warn(bus, "invalid sprom read from the PCIe card, try to use fallback sprom\n");
+ err = bcma_fill_sprom_with_fallback(bus, &bus->sprom);
goto out;
+ }
bcma_sprom_extract_r8(bus, sprom);