aboutsummaryrefslogtreecommitdiff
path: root/sys/net/ieee8023ad_lacp.h
diff options
context:
space:
mode:
authorAndrew Thompson <thompsa@FreeBSD.org>2008-03-17 01:26:44 +0000
committerAndrew Thompson <thompsa@FreeBSD.org>2008-03-17 01:26:44 +0000
commit69f04a828ce3f9ef1bcaac2fe9b08134e66a3faa (patch)
tree076c040853658ff1a489cb46ba8f9ebf694f177f /sys/net/ieee8023ad_lacp.h
parent294800e52df40101cbc9837f9727163bc33e2fbd (diff)
downloadsrc-69f04a828ce3f9ef1bcaac2fe9b08134e66a3faa.tar.gz
src-69f04a828ce3f9ef1bcaac2fe9b08134e66a3faa.zip
Remove extra semicolons.
Pointed out by: antoine
Notes
Notes: svn path=/head/; revision=177289
Diffstat (limited to 'sys/net/ieee8023ad_lacp.h')
-rw-r--r--sys/net/ieee8023ad_lacp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/ieee8023ad_lacp.h b/sys/net/ieee8023ad_lacp.h
index 56a5408210cf..9cebc5910298 100644
--- a/sys/net/ieee8023ad_lacp.h
+++ b/sys/net/ieee8023ad_lacp.h
@@ -269,8 +269,8 @@ struct lacp_softc {
#define LACP_SOFTC(_sc) ((struct lacp_softc *)(_sc)->sc_psc)
#define LACP_LOCK_INIT(_lsc) mtx_init(&(_lsc)->lsc_mtx, \
- "lacp mtx", NULL, MTX_DEF);
-#define LACP_LOCK_DESTROY(_lsc) mtx_destroy(&(_lsc)->lsc_mtx);
+ "lacp mtx", NULL, MTX_DEF)
+#define LACP_LOCK_DESTROY(_lsc) mtx_destroy(&(_lsc)->lsc_mtx)
#define LACP_LOCK(_lsc) mtx_lock(&(_lsc)->lsc_mtx)
#define LACP_UNLOCK(_lsc) mtx_unlock(&(_lsc)->lsc_mtx)
#define LACP_LOCK_ASSERT(_lsc) mtx_assert(&(_lsc)->lsc_mtx, MA_OWNED)