svn commit: r241463 - head/sys/dev/etherswitch/arswitch

Aleksandr Rybalko ray at FreeBSD.org
Thu Oct 11 21:19:43 UTC 2012


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)
 


More information about the svn-src-all mailing list