Date: Mon, 18 May 2009 15:46:34 +0000 (UTC) From: Warner Losh <imp@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r192307 - head/sys/dev/bwi Message-ID: <200905181546.n4IFkYgN066538@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200905181546.n4IFkYgN066538>