diff options
| author | Sam Leffler <sam@FreeBSD.org> | 2004-04-02 23:49:15 +0000 |
|---|---|---|
| committer | Sam Leffler <sam@FreeBSD.org> | 2004-04-02 23:49:15 +0000 |
| commit | fdd758d4d1508f2e58a31f488f4ec63d37969247 (patch) | |
| tree | 86d881f4b9e3b44f2449cb019db996bd4939219d /sys | |
| parent | b28b4653918e71756516ffd576db440183d8977d (diff) | |
Notes
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/dev/ath/if_ath.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/ath/if_ath.c b/sys/dev/ath/if_ath.c index 8f2cc8527f96..1fa4dce8a8c8 100644 --- a/sys/dev/ath/if_ath.c +++ b/sys/dev/ath/if_ath.c @@ -434,6 +434,8 @@ ath_intr(void *arg) DPRINTF(ATH_DEBUG_ANY, ("%s: invalid; ignored\n", __func__)); return; } + if (!ath_hal_intrpend(ah)) /* shared irq, not for us */ + return; if ((ifp->if_flags & (IFF_RUNNING|IFF_UP)) != (IFF_RUNNING|IFF_UP)) { DPRINTF(ATH_DEBUG_ANY, ("%s: if_flags 0x%x\n", __func__, ifp->if_flags)); |
