svn commit: r192279 - head/sys/dev/bwi

Warner Losh imp at FreeBSD.org
Mon May 18 01:07:39 UTC 2009


Author: imp
Date: Mon May 18 01:07:38 2009
New Revision: 192279
URL: http://svn.freebsd.org/changeset/base/192279

Log:
  Correct types of PHY, per http://bcm-specs.sipsolutions.net/PHYVersioning
  
  # Note: The driver doesn't support either these PHY types, so this is
  # effectively a nop.
  
  Submitted by:	"ddk"
  Obtained from:	http://paradox.lissyara.su/bwi.diff

Modified:
  head/sys/dev/bwi/if_bwireg.h

Modified: head/sys/dev/bwi/if_bwireg.h
==============================================================================
--- head/sys/dev/bwi/if_bwireg.h	Mon May 18 01:05:09 2009	(r192278)
+++ head/sys/dev/bwi/if_bwireg.h	Mon May 18 01:07:38 2009	(r192279)
@@ -275,7 +275,8 @@
 #define BWI_PHYINFO_TYPE_11A		0
 #define BWI_PHYINFO_TYPE_11B		1
 #define BWI_PHYINFO_TYPE_11G		2
-#define BWI_PHYINFO_TYPE_11N		5
+#define BWI_PHYINFO_TYPE_11N		4
+#define BWI_PHYINFO_TYPE_11LP		5
 #define BWI_PHYINFO_VER_MASK		__BITS(15, 12)
 
 #define BWI_RF_ANTDIV			0x3e2	/* Antenna Diversity?? */


More information about the svn-src-all mailing list