svn commit: r288053 - head/sys/dev/usb/wlan

Adrian Chadd adrian at FreeBSD.org
Mon Sep 21 02:32:12 UTC 2015


Author: adrian
Date: Mon Sep 21 02:32:11 2015
New Revision: 288053
URL: https://svnweb.freebsd.org/changeset/base/288053

Log:
  Flip on 11n by default; update TODO items.

Modified:
  head/sys/dev/usb/wlan/if_rsu.c

Modified: head/sys/dev/usb/wlan/if_rsu.c
==============================================================================
--- head/sys/dev/usb/wlan/if_rsu.c	Mon Sep 21 02:30:22 2015	(r288052)
+++ head/sys/dev/usb/wlan/if_rsu.c	Mon Sep 21 02:32:11 2015	(r288053)
@@ -22,9 +22,11 @@ __FBSDID("$FreeBSD$");
  * Driver for Realtek RTL8188SU/RTL8191SU/RTL8192SU.
  *
  * TODO:
- *   o 11n support
+ *   o 11n HT40 support
  *   o h/w crypto
  *   o hostap / ibss / mesh
+ *   o sensible RSSI levels
+ *   o power-save operation
  */
 
 #include <sys/param.h>
@@ -84,7 +86,7 @@ SYSCTL_INT(_hw_usb_rsu, OID_AUTO, debug,
 #define	RSU_DPRINTF(_sc, _flg, ...)
 #endif
 
-static int rsu_enable_11n = 0;
+static int rsu_enable_11n = 1;
 TUNABLE_INT("hw.usb.rsu.enable_11n", &rsu_enable_11n);
 
 #define	RSU_DEBUG_ANY		0xffffffff


More information about the svn-src-all mailing list