summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorReyk Floeter <reyk@cvs.openbsd.org>2005-03-18 14:36:40 +0000
committerReyk Floeter <reyk@cvs.openbsd.org>2005-03-18 14:36:40 +0000
commit7569641deb2d434150122e9c9291fc3518ecf8e1 (patch)
tree18432e56a99a948e85ad6cc5f6be4a39e44eecae /sys
parentb2b614475d81fcc2ed2d6d91c4323adf3a377a0c (diff)
ignore bmiss interrupts for now.
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/ic/ar5210.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/dev/ic/ar5210.c b/sys/dev/ic/ar5210.c
index 5ef33368436..6f468a57d4d 100644
--- a/sys/dev/ic/ar5210.c
+++ b/sys/dev/ic/ar5210.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ar5210.c,v 1.14 2005/03/10 08:30:55 reyk Exp $ */
+/* $OpenBSD: ar5210.c,v 1.15 2005/03/18 14:36:39 reyk Exp $ */
/*
* Copyright (c) 2004, 2005 Reyk Floeter <reyk@vantronix.net>
@@ -2324,6 +2324,9 @@ ar5k_ar5210_getPendingInterrupts(hal, interrupt_mask)
hal->ah_radar.r_enabled == AH_TRUE)
ar5k_radar_alert(hal);
+ /* XXX BMISS interrupts may occur after association */
+ *interrupt_mask &= ~HAL_INT_BMISS;
+
return (AH_TRUE);
}