diff options
author | Hauke Mehrtens <hauke@openwrt.org> | 2012-03-11 13:36:46 +0000 |
---|---|---|
committer | Hauke Mehrtens <hauke@openwrt.org> | 2012-03-11 13:36:46 +0000 |
commit | c1a889d1a3cfc4c4086c6a7c99646f22cf1cd48d (patch) | |
tree | 4d268454dc4ff5993660020b7357f8663c29f130 /target | |
parent | 9483db7e0704f2b669b4b729b24031dc7dbfcefa (diff) | |
download | upstream-c1a889d1a3cfc4c4086c6a7c99646f22cf1cd48d.tar.gz upstream-c1a889d1a3cfc4c4086c6a7c99646f22cf1cd48d.tar.bz2 upstream-c1a889d1a3cfc4c4086c6a7c99646f22cf1cd48d.zip |
brcm47xx: make patch apply
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30876 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/brcm47xx/patches-3.2/231-bcma_reorder_sprom_fill.patch | 8 |
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 a9f176f9a0..c991ed313f 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); |