diff options
author | Constantine Sapuntzakis <csapuntz@cvs.openbsd.org> | 1999-09-24 05:31:52 +0000 |
---|---|---|
committer | Constantine Sapuntzakis <csapuntz@cvs.openbsd.org> | 1999-09-24 05:31:52 +0000 |
commit | 6aa6fe6207b0ffe4209fc3eaab166557cb54e4d5 (patch) | |
tree | f76f397784d5146cb300ca7c4d98c5df7a0e709c /sys/dev/atapiscsi | |
parent | 5f91f8170abfe52c871632ab755474bd050e924a (diff) |
Fix a bug that was causing timeouts every time an ATAPI device was reset.
Diffstat (limited to 'sys/dev/atapiscsi')
-rw-r--r-- | sys/dev/atapiscsi/atapiscsi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/atapiscsi/atapiscsi.c b/sys/dev/atapiscsi/atapiscsi.c index 9e7c9654d5b..798faf33687 100644 --- a/sys/dev/atapiscsi/atapiscsi.c +++ b/sys/dev/atapiscsi/atapiscsi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: atapiscsi.c,v 1.10 1999/09/05 21:45:23 niklas Exp $ */ +/* $OpenBSD: atapiscsi.c,v 1.11 1999/09/24 05:31:51 csapuntz Exp $ */ /* * This code is derived from code with the copyright below. @@ -1071,7 +1071,7 @@ again: wdcbit_bucket(chp, 512); drvp->state = PIOMODE; - break; + /* fall through */ case PIOMODE: piomode: |