svn commit: r192307 - head/sys/dev/bwi
Warner Losh
imp at FreeBSD.org
Mon May 18 15:46:35 UTC 2009
Author: imp
Date: Mon May 18 15:46:34 2009
New Revision: 192307
URL: http://svn.freebsd.org/changeset/base/192307
Log:
Remove unnecessary comments. 11A read/write is the same: its just the
classic indirect register dance.
Submitted by: ddkprog at yahoo not com
Modified:
head/sys/dev/bwi/bwiphy.c
Modified: head/sys/dev/bwi/bwiphy.c
==============================================================================
--- head/sys/dev/bwi/bwiphy.c Mon May 18 15:31:26 2009 (r192306)
+++ head/sys/dev/bwi/bwiphy.c Mon May 18 15:46:34 2009 (r192307)
@@ -135,7 +135,6 @@ bwi_phy_write(struct bwi_mac *mac, uint1
{
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
{
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);
}
More information about the svn-src-head
mailing list