From owner-svn-src-head@FreeBSD.ORG Thu Oct 11 21:19:43 2012 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6C227FDD; Thu, 11 Oct 2012 21:19:43 +0000 (UTC) (envelope-from ray@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 549BF8FC0C; Thu, 11 Oct 2012 21:19:43 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9BLJhKr087600; Thu, 11 Oct 2012 21:19:43 GMT (envelope-from ray@svn.freebsd.org) Received: (from ray@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BLJhmi087598; Thu, 11 Oct 2012 21:19:43 GMT (envelope-from ray@svn.freebsd.org) Message-Id: <201210112119.q9BLJhmi087598@svn.freebsd.org> From: Aleksandr Rybalko Date: Thu, 11 Oct 2012 21:19:43 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r241463 - head/sys/dev/etherswitch/arswitch 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.14 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: Thu, 11 Oct 2012 21:19:43 -0000 Author: ray Date: Thu Oct 11 21:19:42 2012 New Revision: 241463 URL: http://svn.freebsd.org/changeset/base/241463 Log: Fix tiypo. Submitted by: Luiz Otavio O Souza Approved by: adrian (mentor) Modified: head/sys/dev/etherswitch/arswitch/arswitchvar.h Modified: head/sys/dev/etherswitch/arswitch/arswitchvar.h ============================================================================== --- head/sys/dev/etherswitch/arswitch/arswitchvar.h Thu Oct 11 21:15:54 2012 (r241462) +++ head/sys/dev/etherswitch/arswitch/arswitchvar.h Thu Oct 11 21:19:42 2012 (r241463) @@ -70,7 +70,7 @@ struct arswitch_softc { #define ARSWITCH_UNLOCK(_sc) \ mtx_unlock(&(_sc)->sc_mtx) #define ARSWITCH_LOCK_ASSERT(_sc, _what) \ - mtx_assert(&(_s)c->sc_mtx, (_what)) + mtx_assert(&(_sc)->sc_mtx, (_what)) #define ARSWITCH_TRYLOCK(_sc) \ mtx_trylock(&(_sc)->sc_mtx)