Replace a hardcoded Analog switch (which breaks on N-PHY) by a call to the switch_analog PHY operation. Signed-off-by: Michael Buesch <mb@xxxxxxxxx> --- John, please queue for the next merge window. Index: wireless-testing/drivers/net/wireless/b43/main.c =================================================================== --- wireless-testing.orig/drivers/net/wireless/b43/main.c 2008-09-03 11:58:23.000000000 +0200 +++ wireless-testing/drivers/net/wireless/b43/main.c 2008-09-03 12:27:03.000000000 +0200 @@ -2715,13 +2715,14 @@ static int b43_chip_init(struct b43_wlde goto out; /* firmware is released later */ err = b43_upload_initvals(dev); if (err) goto err_gpio_clean; - b43_write16(dev, 0x03E6, 0x0000); + /* Turn the Analog on and initialize the PHY. */ + phy->ops->switch_analog(dev, 1); err = b43_phy_init(dev); if (err) goto err_gpio_clean; /* Disable Interference Mitigation. */ if (phy->ops->interf_mitigation) -- 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