svn commit: r204385 - head/sys/dev/bwn

Weongyo Jeong weongyo at FreeBSD.org
Sat Feb 27 02:20:38 UTC 2010


Author: weongyo
Date: Sat Feb 27 02:20:38 2010
New Revision: 204385
URL: http://svn.freebsd.org/changeset/base/204385

Log:
  don't need to check BWN_RX_PHYST0_SHORTPRMBL flag because it's already
  handled in later.
  
  Reported from:	imp, nwhitehorn

Modified:
  head/sys/dev/bwn/if_bwn.c

Modified: head/sys/dev/bwn/if_bwn.c
==============================================================================
--- head/sys/dev/bwn/if_bwn.c	Sat Feb 27 01:58:41 2010	(r204384)
+++ head/sys/dev/bwn/if_bwn.c	Sat Feb 27 02:20:38 2010	(r204385)
@@ -9395,8 +9395,6 @@ bwn_rxeof(struct bwn_mac *mac, struct mb
 		device_printf(sc->sc_dev, "TODO RX: RX_FLAG_FAILED_FCS_CRC\n");
 	if (phystat0 & (BWN_RX_PHYST0_PLCPHCF | BWN_RX_PHYST0_PLCPFV))
 		device_printf(sc->sc_dev, "TODO RX: RX_FLAG_FAILED_PLCP_CRC\n");
-	if (phystat0 & BWN_RX_PHYST0_SHORTPRMBL)
-		device_printf(sc->sc_dev, "TODO RX: RX_FLAG_SHORTPRE\n");
 	if (macstat & BWN_RX_MAC_DECERR)
 		goto drop;
 


More information about the svn-src-head mailing list