From owner-svn-src-all@freebsd.org Mon Aug 17 16:46:56 2020 Return-Path: Delivered-To: svn-src-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 236AF3B7061; Mon, 17 Aug 2020 16:46:56 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BVg1X078pz3fSs; Mon, 17 Aug 2020 16:46:56 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from mx1.sbone.de (mx1.sbone.de [IPv6:2a01:4f8:13b:39f::9f:25]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.sbone.de", Issuer "SBone.DE" (not verified)) (Authenticated sender: bz/mail) by smtp.freebsd.org (Postfix) with ESMTPSA id C0F372107F; Mon, 17 Aug 2020 16:46:55 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from mail.sbone.de (mail.sbone.de [IPv6:fde9:577b:c1a9:31::2013:587]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.sbone.de (Postfix) with ESMTPS id 1F27E8D4A38B; Mon, 17 Aug 2020 16:46:53 +0000 (UTC) Received: from content-filter.sbone.de (content-filter.sbone.de [IPv6:fde9:577b:c1a9:31::2013:2742]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.sbone.de (Postfix) with ESMTPS id 93877E70815; Mon, 17 Aug 2020 16:46:52 +0000 (UTC) X-Virus-Scanned: amavisd-new at sbone.de Received: from mail.sbone.de ([IPv6:fde9:577b:c1a9:31::2013:587]) by content-filter.sbone.de (content-filter.sbone.de [fde9:577b:c1a9:31::2013:2742]) (amavisd-new, port 10024) with ESMTP id VdRg8r8fRf5Y; Mon, 17 Aug 2020 16:46:51 +0000 (UTC) Received: from [169.254.45.172] (unknown [IPv6:fde9:577b:c1a9:4902:c86c:7fc4:a1fa:7846]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.sbone.de (Postfix) with ESMTPSA id 23272E707B1; Mon, 17 Aug 2020 16:46:51 +0000 (UTC) From: "Bjoern A. Zeeb" To: "Oliver Pinter" Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r364312 - head/sys/net80211 Date: Mon, 17 Aug 2020 16:46:50 +0000 X-Mailer: MailMate (2.0BETAr6146) Message-ID: In-Reply-To: References: <202008171629.07HGT0HR089083@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8"; format=flowed Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Aug 2020 16:46:56 -0000 On 17 Aug 2020, at 16:42, Oliver Pinter wrote: > On Monday, August 17, 2020, Bjoern A. Zeeb wrote: > >> Author: bz >> Date: Mon Aug 17 16:28:59 2020 >> New Revision: 364312 >> URL: https://svnweb.freebsd.org/changeset/base/364312 >> >> Log: >> net80211: remove vertical whitespace >> >> No functional changes. >> >> MFC after: 2 weeks >> Sponsored by: Rubicon Communications, LLC (d/b/a "Netgate") >> >> Modified: >> head/sys/net80211/ieee80211.c >> head/sys/net80211/ieee80211_ioctl.c >> head/sys/net80211/ieee80211_vht.c >> >> Modified: head/sys/net80211/ieee80211_ioctl.c >> ============================================================ >> ================== >> --- head/sys/net80211/ieee80211_ioctl.c Mon Aug 17 16:27:02 2020 >> (r364311) >> +++ head/sys/net80211/ieee80211_ioctl.c Mon Aug 17 16:28:59 2020 >> (r364312) >> @@ -1159,12 +1159,9 @@ ieee80211_ioctl_get80211(struct ieee80211vap >> *vap, >> u_l >> if (vap->iv_flags_ext & IEEE80211_FEXT_UAPSD) >> ireq->i_val = 1; >> break; >> - >> - /* VHT */ > > Removed comment. > >> case IEEE80211_IOC_VHTCONF: >> ireq->i_val = vap->iv_flags_vht & >> IEEE80211_FVHT_MASK; >> break; >> - >> default: >> error = ieee80211_ioctl_getdefault(vap, ireq); >> break; >> Yes. We don’t do comments on any of the other cases and this one did not say much anyway. /bz