diff options
author | 2011-01-01 12:58:33 +0000 | |
---|---|---|
committer | 2011-01-01 12:58:33 +0000 | |
commit | bc9f0c79b79b6a03e1ec2e3b0f3d4342ebfeeeb7 (patch) | |
tree | 964c278e21a0f73ea8b3313d5b78c77d97061732 /sys/dev | |
parent | Stop enterfield() from writing beyond the end of the buffer. (diff) | |
download | wireguard-openbsd-bc9f0c79b79b6a03e1ec2e3b0f3d4342ebfeeeb7.tar.xz wireguard-openbsd-bc9f0c79b79b6a03e1ec2e3b0f3d4342ebfeeeb7.zip |
unbreak kernel builds; sorry guys.
pointed out by Benoit Lecocq.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ic/athnreg.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/ic/athnreg.h b/sys/dev/ic/athnreg.h index 7d7b14a5258..3f17d1066af 100644 --- a/sys/dev/ic/athnreg.h +++ b/sys/dev/ic/athnreg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: athnreg.h,v 1.15 2010/12/31 17:17:14 damien Exp $ */ +/* $OpenBSD: athnreg.h,v 1.16 2011/01/01 12:58:33 damien Exp $ */ /*- * Copyright (c) 2009 Damien Bergamini <damien.bergamini@free.fr> @@ -421,6 +421,7 @@ /* Bits for AR_ISR_S2. */ #define AR_ISR_S2_QCU_TXURN_M 0x000003ff #define AR_ISR_S2_QCU_TXURN_S 0 +#define AR_ISR_S2_BB_WATCHDOG 0x00010000 #define AR_ISR_S2_CST 0x00400000 #define AR_ISR_S2_GTT 0x00800000 #define AR_ISR_S2_TIM 0x01000000 |