aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/bcma
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2012-06-29 19:44:39 -0400
committerJohn W. Linville <linville@tuxdriver.com>2012-07-09 16:36:03 -0400
commit973f9763e6a33d2f122631bd58b2921b5f999cc6 (patch)
treed14a4ab4cb26d8fa51f12003ede7b3724718fe40 /drivers/bcma
parent4b4f5be2e49a604de11dee0ee9b3f151de061724 (diff)
bcma: remove fix for 4329b0 bad LPOM is detection
There is not core id with 0x4329, but at the same place in the open source part of the Broadcom SDK is a check for some device with the chip id of 0x4329. The device with a chip id of 0x4329 is a full mac device, so it will never be supported by bcma, this part is running in the firmware of the device and not on the host CPU. This code is wrong and will never be used, so just remove it. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/bcma')
-rw-r--r--drivers/bcma/driver_chipcommon_pmu.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/bcma/driver_chipcommon_pmu.c b/drivers/bcma/driver_chipcommon_pmu.c
index 89528cf4d145..2d9ac3e325ae 100644
--- a/drivers/bcma/driver_chipcommon_pmu.c
+++ b/drivers/bcma/driver_chipcommon_pmu.c
@@ -180,9 +180,6 @@ void bcma_pmu_init(struct bcma_drv_cc *cc)
180 bcma_cc_set32(cc, BCMA_CC_PMU_CTL, 180 bcma_cc_set32(cc, BCMA_CC_PMU_CTL,
181 BCMA_CC_PMU_CTL_NOILPONW); 181 BCMA_CC_PMU_CTL_NOILPONW);
182 182
183 if (cc->core->id.id == 0x4329 && cc->core->id.rev == 2)
184 pr_err("Fix for 4329b0 bad LPOM state not implemented!\n");
185
186 bcma_pmu_pll_init(cc); 183 bcma_pmu_pll_init(cc);
187 bcma_pmu_resources_init(cc); 184 bcma_pmu_resources_init(cc);
188 bcma_pmu_swreg_init(cc); 185 bcma_pmu_swreg_init(cc);