summaryrefslogtreecommitdiff
path: root/target/linux/brcm47xx
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2012-03-11 13:36:46 +0000
committerHauke Mehrtens <hauke@hauke-m.de>2012-03-11 13:36:46 +0000
commit067a065305aec6b8344095fe986eb2f7e900e63a (patch)
tree16c6af66427448facd013cc18d331de207b56df8 /target/linux/brcm47xx
parent7dcdf69388f6513cebd2869d8fe609f67cbeeced (diff)
downloadmtk-20170518-067a065305aec6b8344095fe986eb2f7e900e63a.zip
mtk-20170518-067a065305aec6b8344095fe986eb2f7e900e63a.tar.gz
mtk-20170518-067a065305aec6b8344095fe986eb2f7e900e63a.tar.bz2
brcm47xx: make patch apply
SVN-Revision: 30876
Diffstat (limited to 'target/linux/brcm47xx')
-rw-r--r--target/linux/brcm47xx/patches-3.2/231-bcma_reorder_sprom_fill.patch8
1 files changed, 4 insertions, 4 deletions
diff --git a/target/linux/brcm47xx/patches-3.2/231-bcma_reorder_sprom_fill.patch b/target/linux/brcm47xx/patches-3.2/231-bcma_reorder_sprom_fill.patch
index a9f176f..c991ed3 100644
--- a/target/linux/brcm47xx/patches-3.2/231-bcma_reorder_sprom_fill.patch
+++ b/target/linux/brcm47xx/patches-3.2/231-bcma_reorder_sprom_fill.patch
@@ -16,17 +16,17 @@
bcm47xx_fill_sprom(&iv->sprom, NULL);
if (nvram_getenv("cardbus", buf, sizeof(buf)) >= 0)
-@@ -204,12 +206,14 @@ static int bcm47xx_get_sprom_bcma(struct
+@@ -203,12 +205,14 @@ static int bcm47xx_get_sprom_bcma(struct
+ struct bcma_device *core;
- switch (bus->hosttype) {
- case BCMA_HOSTTYPE_PCI:
+ if (bus->hosttype == BCMA_HOSTTYPE_PCI) {
+ memset(out, 0, sizeof(struct ssb_sprom));
snprintf(prefix, sizeof(prefix), "pci/%u/%u/",
bus->host_pci->bus->number + 1,
PCI_SLOT(bus->host_pci->devfn));
bcm47xx_fill_sprom(out, prefix);
return 0;
- case BCMA_HOSTTYPE_SOC:
+ } else if (bus->hosttype == BCMA_HOSTTYPE_SOC) {
+ memset(out, 0, sizeof(struct ssb_sprom));
bcm47xx_fill_sprom_ethernet(out, NULL);
core = bcma_find_core(bus, BCMA_CORE_80211);