From f4fcd5ddec6d6820c13aa155d284116e214433de Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Mon, 18 May 2009 15:46:34 +0000 Subject: [PATCH] Remove unnecessary comments. 11A read/write is the same: its just the classic indirect register dance. Submitted by: ddkprog at yahoo not com --- sys/dev/bwi/bwiphy.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/sys/dev/bwi/bwiphy.c b/sys/dev/bwi/bwiphy.c index 9a45c843718..c41c0f85487 100644 --- a/sys/dev/bwi/bwiphy.c +++ b/sys/dev/bwi/bwiphy.c @@ -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); }