diff options
| author | Mike Smith <msmith@FreeBSD.org> | 2001-02-26 20:13:19 +0000 |
|---|---|---|
| committer | Mike Smith <msmith@FreeBSD.org> | 2001-02-26 20:13:19 +0000 |
| commit | 358cd20f3a0a4cbd30c648d0537297b0f44e416c (patch) | |
| tree | 57c919776090466a499fe85c094c33e3ddf3e941 /sys | |
| parent | b9af273fe3fb2f5a714fb73e252f544b43f899eb (diff) | |
Notes
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/dev/twe/twe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/twe/twe.c b/sys/dev/twe/twe.c index fba49f2ec0b1..fadf767fb5aa 100644 --- a/sys/dev/twe/twe.c +++ b/sys/dev/twe/twe.c @@ -315,7 +315,7 @@ twe_intr(struct twe_softc *sc) twe_attention_intr(sc); if (status_reg & TWE_STATUS_COMMAND_INTERRUPT) twe_command_intr(sc); - if (status_reg * TWE_STATUS_RESPONSE_INTERRUPT) + if (status_reg & TWE_STATUS_RESPONSE_INTERRUPT) twe_done(sc); }; |
