From owner-svn-src-head@freebsd.org Sun Feb 28 23:52:35 2016 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 15CB7AB7870; Sun, 28 Feb 2016 23:52:35 +0000 (UTC) (envelope-from avos@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 D910D1A2E; Sun, 28 Feb 2016 23:52:34 +0000 (UTC) (envelope-from avos@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1SNqXu6019107; Sun, 28 Feb 2016 23:52:33 GMT (envelope-from avos@FreeBSD.org) Received: (from avos@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1SNqX1r019106; Sun, 28 Feb 2016 23:52:33 GMT (envelope-from avos@FreeBSD.org) Message-Id: <201602282352.u1SNqX1r019106@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: avos set sender to avos@FreeBSD.org using -f From: Andriy Voskoboinyk Date: Sun, 28 Feb 2016 23:52:33 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r296171 - head/sys/net80211 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, 28 Feb 2016 23:52:35 -0000 Author: avos Date: Sun Feb 28 23:52:33 2016 New Revision: 296171 URL: https://svnweb.freebsd.org/changeset/base/296171 Log: net80211: fix a comment for TX lock Approved by: adrian (mentor) Differential Revision: https://reviews.freebsd.org/D5476 Modified: head/sys/net80211/ieee80211_freebsd.h Modified: head/sys/net80211/ieee80211_freebsd.h ============================================================================== --- head/sys/net80211/ieee80211_freebsd.h Sun Feb 28 23:48:34 2016 (r296170) +++ head/sys/net80211/ieee80211_freebsd.h Sun Feb 28 23:52:33 2016 (r296171) @@ -65,7 +65,7 @@ typedef struct { * transmission operations throughout the stack. */ typedef struct { - char name[16]; /* e.g. "ath0_com_lock" */ + char name[16]; /* e.g. "ath0_tx_lock" */ struct mtx mtx; } ieee80211_tx_lock_t; #define IEEE80211_TX_LOCK_INIT(_ic, _name) do { \