From owner-svn-src-head@freebsd.org Sun Sep 20 22:52:41 2015 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 296F6A06FC1; Sun, 20 Sep 2015 22:52:41 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 17C15141A; Sun, 20 Sep 2015 22:52:41 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t8KMqeV4051290; Sun, 20 Sep 2015 22:52:40 GMT (envelope-from adrian@FreeBSD.org) Received: (from adrian@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t8KMqeYQ051289; Sun, 20 Sep 2015 22:52:40 GMT (envelope-from adrian@FreeBSD.org) Message-Id: <201509202252.t8KMqeYQ051289@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adrian set sender to adrian@FreeBSD.org using -f From: Adrian Chadd Date: Sun, 20 Sep 2015 22:52:40 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r288049 - head/sys/dev/usb/wlan X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Sep 2015 22:52:41 -0000 Author: adrian Date: Sun Sep 20 22:52:40 2015 New Revision: 288049 URL: https://svnweb.freebsd.org/changeset/base/288049 Log: Disable HT40 in if_rsu for now. There's something missing in the HT40 setup pieces and so (at least) transmit doesn't work. It'll just fall back to being a straight HT20 device and negotiate HT20 only. Tested by: Idwer Vollering 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 Sun Sep 20 22:27:19 2015 (r288048) +++ head/sys/dev/usb/wlan/if_rsu.c Sun Sep 20 22:52:40 2015 (r288049) @@ -445,7 +445,13 @@ rsu_attach(device_t self) IEEE80211_HTCAP_MAXAMSDU_3839 | IEEE80211_HTCAP_SMPS_OFF; + /* + * XXX HT40 isn't working in this driver yet - there's + * something missing. Disable it for now. + */ +#if 0 ic->ic_htcaps |= IEEE80211_HTCAP_CHWIDTH40; +#endif /* set number of spatial streams */ ic->ic_txstream = 1;