summaryrefslogtreecommitdiffstats
path: root/sys/net
diff options
context:
space:
mode:
authorthompsa <thompsa@FreeBSD.org>2008-03-17 01:26:44 +0000
committerthompsa <thompsa@FreeBSD.org>2008-03-17 01:26:44 +0000
commitbcbf813313666e5356eed8d43d041baef54fe15a (patch)
tree076c040853658ff1a489cb46ba8f9ebf694f177f /sys/net
parent380d312794fa282be783dd18924d3981aef81a7e (diff)
downloadFreeBSD-src-bcbf813313666e5356eed8d43d041baef54fe15a.zip
FreeBSD-src-bcbf813313666e5356eed8d43d041baef54fe15a.tar.gz
Remove extra semicolons.
Pointed out by: antoine
Diffstat (limited to 'sys/net')
-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 56a5408..9cebc59 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)
OpenPOWER on IntegriCloud