gavron@xxxxxxxxxxx wrote:
Is this close? E --- /tmp/phy_g.c 2008-09-05 21:06:57.000000000 -0700 +++ phy_g.c 2008-09-05 21:36:18.000000000 -0700 @@ -2198,7 +2198,7 @@ else b43_phy_initb6(dev); - if (phy->rev >= 2 || phy->gmode) + if (phy->rev >= 2 && phy->gmode) b43_phy_inita(dev); if (phy->rev >= 2) { @@ -2216,9 +2216,9 @@ if (phy->gmode || phy->rev >= 2) { tmp = b43_phy_read(dev, B43_PHY_VERSION_OFDM); tmp &= B43_PHYVER_VERSION; - if (tmp == 3 || tmp == 5) { + if (tmp == 4 || tmp == 5) { b43_phy_write(dev, B43_PHY_OFDM(0xC2), 0x1816); - b43_phy_write(dev, B43_PHY_OFDM(0xC3), 0x8006); + b43_phy_write(dev, B43_PHY_OFDM(0xC3), 0x8606); } if (tmp == 5) { b43_phy_write(dev, B43_PHY_OFDM(0xCC), @@ -2226,7 +2226,7 @@ & 0x00FF) | 0x1F00); } } - if ((phy->rev <= 2 && phy->gmode) || phy->rev >= 2) + if ((phy->rev >=2) b43_phy_write(dev, B43_PHY_OFDM(0x7E), 0x78); if (phy->radio_rev == 8) { b43_phy_write(dev, B43_PHY_EXTG(0x01),
It is close, but I think you are working on b43. My changes are for b43legacy and all changes will be in drivers/net/wireless/b43legacy/phy.c
Larry -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html