summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReyk Floeter <reyk@cvs.openbsd.org>2004-12-18 03:41:00 +0000
committerReyk Floeter <reyk@cvs.openbsd.org>2004-12-18 03:41:00 +0000
commitd425c65ef5f82202acde49dd096f1e880d3614f1 (patch)
treef3da9ff3d0d6b46152e1ddf48face361a0da9041
parentfaf0b82756c37d8ba6e7918b45e93ed20b1d20cc (diff)
use tick instead of ticks. thanks to hannes at mehnert dot org.
-rw-r--r--sys/dev/ic/athvar.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/athvar.h b/sys/dev/ic/athvar.h
index 88509914326..1ce9a137e41 100644
--- a/sys/dev/ic/athvar.h
+++ b/sys/dev/ic/athvar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: athvar.h,v 1.2 2004/11/23 09:39:29 reyk Exp $ */
+/* $OpenBSD: athvar.h,v 1.3 2004/12/18 03:40:59 reyk Exp $ */
/* $NetBSD: athvar.h,v 1.10 2004/08/10 01:03:53 dyoung Exp $ */
/*-
@@ -377,7 +377,7 @@ struct ath_softc {
#define ATH_TXQ_UNLOCK(_sc) mtx_unlock(&(_sc)->sc_txqlock)
#define ATH_TXQ_LOCK_ASSERT(_sc) mtx_assert(&(_sc)->sc_txqlock, MA_OWNED)
-#define ATH_TICKS() (ticks)
+#define ATH_TICKS() (tick)
#define ATH_CALLOUT_INIT(chp) callout_init((chp))
#define ATH_TASK_INIT(task, func, context) \
do { \