Remove unnecessary comments. 11A read/write is the same: its just the

classic indirect register dance.

Submitted by:	ddkprog at yahoo not com
This commit is contained in:
Warner Losh 2009-05-18 15:46:34 +00:00
parent b16a8a5859
commit f4fcd5ddec

View file

@ -135,7 +135,6 @@ bwi_phy_write(struct bwi_mac *mac, uint16_t ctrl, uint16_t data)
{
struct bwi_softc *sc = mac->mac_sc;
/* TODO: 11A */
CSR_WRITE_2(sc, BWI_PHY_CTRL, ctrl);
CSR_WRITE_2(sc, BWI_PHY_DATA, data);
}
@ -145,7 +144,6 @@ bwi_phy_read(struct bwi_mac *mac, uint16_t ctrl)
{
struct bwi_softc *sc = mac->mac_sc;
/* TODO: 11A */
CSR_WRITE_2(sc, BWI_PHY_CTRL, ctrl);
return CSR_READ_2(sc, BWI_PHY_DATA);
}