diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2012-04-28 20:04:06 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-05-16 12:45:20 -0400 |
commit | 5a20ef3db28faa42dd5dc86ad75d2736bcd3da4c (patch) | |
tree | bc079f5da6e2ec6296c434ec51926545ae6e8db1 /arch/mips/bcm47xx | |
parent | 12d9568333de3bfc50ff8d3312c097ba7ea7fe3c (diff) |
ssb: remove rev from boardinfo
Previously the rev contained the revision read from the pci config
space and was used as board_rev in the wireless drivers. This is wrong
the board_rev is only fetched from the sprom accordingly to the open
source part of the Broadcom SDK and brcmsmac. This patch removes the
rev from the boardinfo structure and uses the board_rev attribute from
sprom instead. This attribute is filled by PCI, PCMCIA, SDIO and SoC
code.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Tested-by: Arend van Spriel <arend@broadcom.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'arch/mips/bcm47xx')
-rw-r--r-- | arch/mips/bcm47xx/setup.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/mips/bcm47xx/setup.c b/arch/mips/bcm47xx/setup.c index 19780aa91708..d9278a82e003 100644 --- a/arch/mips/bcm47xx/setup.c +++ b/arch/mips/bcm47xx/setup.c | |||
@@ -115,8 +115,6 @@ static int bcm47xx_get_invariants(struct ssb_bus *bus, | |||
115 | iv->boardinfo.vendor = SSB_BOARDVENDOR_BCM; | 115 | iv->boardinfo.vendor = SSB_BOARDVENDOR_BCM; |
116 | if (nvram_getenv("boardtype", buf, sizeof(buf)) >= 0) | 116 | if (nvram_getenv("boardtype", buf, sizeof(buf)) >= 0) |
117 | iv->boardinfo.type = (u16)simple_strtoul(buf, NULL, 0); | 117 | iv->boardinfo.type = (u16)simple_strtoul(buf, NULL, 0); |
118 | if (nvram_getenv("boardrev", buf, sizeof(buf)) >= 0) | ||
119 | iv->boardinfo.rev = (u16)simple_strtoul(buf, NULL, 0); | ||
120 | 118 | ||
121 | bcm47xx_fill_sprom(&iv->sprom, NULL); | 119 | bcm47xx_fill_sprom(&iv->sprom, NULL); |
122 | 120 | ||