summaryrefslogtreecommitdiff
path: root/sys/dev/ath
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2006-08-17 22:50:33 +0000
committerWarner Losh <imp@FreeBSD.org>2006-08-17 22:50:33 +0000
commit1a3c917f9d8daf9ad673c264a2e0fe0025109d0e (patch)
treeebf398010668cc2bb542a2cd863c39769afc3743 /sys/dev/ath
parentc487be961ac92a1af881053925347aa2575e6490 (diff)
Notes
Diffstat (limited to 'sys/dev/ath')
-rw-r--r--sys/dev/ath/if_athvar.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ath/if_athvar.h b/sys/dev/ath/if_athvar.h
index b96c0628e3ba..46f7308ba55b 100644
--- a/sys/dev/ath/if_athvar.h
+++ b/sys/dev/ath/if_athvar.h
@@ -149,7 +149,7 @@ struct ath_txq {
snprintf((_tq)->axq_name, sizeof((_tq)->axq_name), "%s_txq%u", \
device_get_nameunit((_sc)->sc_dev), (_tq)->axq_qnum); \
mtx_init(&(_tq)->axq_lock, (_tq)->axq_name, "ath_txq", MTX_DEF); \
-} while (0);
+} while (0)
#define ATH_TXQ_LOCK_DESTROY(_tq) mtx_destroy(&(_tq)->axq_lock)
#define ATH_TXQ_LOCK(_tq) mtx_lock(&(_tq)->axq_lock)
#define ATH_TXQ_UNLOCK(_tq) mtx_unlock(&(_tq)->axq_lock)