summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/isa/fdc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/isa/fdc.c b/sys/dev/isa/fdc.c
index 28a2e4ac1d6..cc6aac6a5a6 100644
--- a/sys/dev/isa/fdc.c
+++ b/sys/dev/isa/fdc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fdc.c,v 1.8 1996/11/29 22:54:55 niklas Exp $ */
+/* $OpenBSD: fdc.c,v 1.9 1996/11/30 09:34:42 downsj Exp $ */
/* $NetBSD: fd.c,v 1.90 1996/05/12 23:12:03 mycroft Exp $ */
/*-
@@ -272,8 +272,10 @@ fdcresult(fdc)
log(LOG_ERR, "fdcresult: overrun\n");
return -1;
}
- fdc->sc_status[n++] = bus_space_read_1(iot, ioh, fddata);
+ fdc->sc_status[n++] =
+ bus_space_read_1(iot, ioh, fddata);
}
+ delay(10);
}
log(LOG_ERR, "fdcresult: timeout\n");
return -1;