summaryrefslogtreecommitdiffstats
path: root/sys/dev/fdc
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1994-11-18 10:18:36 +0000
committerphk <phk@FreeBSD.org>1994-11-18 10:18:36 +0000
commit43a154ec8e48944b138eaa01324a04694ea0d016 (patch)
treec215f67d0be966e7ac3020051ed541ca3888b2a5 /sys/dev/fdc
parent12336243818b8e4d970f270f3fd1dcf2713fbb0d (diff)
downloadFreeBSD-src-43a154ec8e48944b138eaa01324a04694ea0d016.zip
FreeBSD-src-43a154ec8e48944b138eaa01324a04694ea0d016.tar.gz
Extended the SEEKWAIT and RECALWAIT somewhat to avoid annoying messages.
Diffstat (limited to 'sys/dev/fdc')
-rw-r--r--sys/dev/fdc/fdc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/fdc/fdc.c b/sys/dev/fdc/fdc.c
index b22f641..045d02e 100644
--- a/sys/dev/fdc/fdc.c
+++ b/sys/dev/fdc/fdc.c
@@ -40,7 +40,7 @@
* SUCH DAMAGE.
*
* from: @(#)fd.c 7.4 (Berkeley) 5/25/91
- * $Id: fd.c,v 1.41 1994/11/08 05:42:10 jkh Exp $
+ * $Id: fd.c,v 1.42 1994/11/08 06:34:04 ache Exp $
*
*/
@@ -1101,7 +1101,7 @@ fdstate(fdcu, fdc)
return(0); /* will return later */
case SEEKWAIT:
/* allow heads to settle */
- timeout(fd_pseudointr, (caddr_t)fdcu, hz / 32);
+ timeout(fd_pseudointr, (caddr_t)fdcu, hz / 16);
fdc->state = SEEKCOMPLETE;
return(0); /* will return later */
case SEEKCOMPLETE : /* SEEK DONE, START DMA */
@@ -1303,7 +1303,7 @@ fdstate(fdcu, fdc)
return(0); /* will return later */
case RECALWAIT:
/* allow heads to settle */
- timeout(fd_pseudointr, (caddr_t)fdcu, hz / 32);
+ timeout(fd_pseudointr, (caddr_t)fdcu, hz / 8);
fdc->state = RECALCOMPLETE;
return(0); /* will return later */
case RECALCOMPLETE:
OpenPOWER on IntegriCloud