diff options
author | Constantine Sapuntzakis <csapuntz@cvs.openbsd.org> | 2001-06-25 22:31:30 +0000 |
---|---|---|
committer | Constantine Sapuntzakis <csapuntz@cvs.openbsd.org> | 2001-06-25 22:31:30 +0000 |
commit | 85c3856ab5615dfa3e1cc8b1ad4f0bb6a040b156 (patch) | |
tree | a31162aec529010a8c2f13a72f9baff286931b65 /sys/dev | |
parent | 48210fc5236c653a5d6209ae5aaefdaae673974e (diff) |
Undo premature commit
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/atapiscsi/atapiscsi.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/sys/dev/atapiscsi/atapiscsi.c b/sys/dev/atapiscsi/atapiscsi.c index dadca27b053..42fd2ee3f45 100644 --- a/sys/dev/atapiscsi/atapiscsi.c +++ b/sys/dev/atapiscsi/atapiscsi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: atapiscsi.c,v 1.44 2001/06/25 22:29:20 csapuntz Exp $ */ +/* $OpenBSD: atapiscsi.c,v 1.45 2001/06/25 22:31:29 csapuntz Exp $ */ /* * This code is derived from code with the copyright below. @@ -586,18 +586,6 @@ wdc_atapi_the_poll_machine(chp, xfer) idx = 0; } - if (cold && retargs.expect_irq == 1) { - xfer->endticks = 0; - chp->ch_flags |= WDCF_IRQ_WAIT; - while (xfer->endticks == 0 && - (current_timeout * 1000) <= idx) { - delay(1000); - idx += 1000; - } - chp->ch_flags &= ~WDCF_IRQ_WAIT; - continue; - } - if (retargs.delay != 0) { delay (1000 * retargs.delay); idx += 1000 * retargs.delay; |