From ff217ba6d992530f6a25cc733f0f607c56fa82ad Mon Sep 17 00:00:00 2001 From: veego Date: Fri, 24 Jan 1997 21:17:19 +0000 Subject: [PATCH] Decrease the delay() in isapnp_wait_status(), 100 was too much. --- sys/dev/isapnp/isapnpres.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/isapnp/isapnpres.c b/sys/dev/isapnp/isapnpres.c index 388bc1aca6f1..edcf620c08f1 100644 --- a/sys/dev/isapnp/isapnpres.c +++ b/sys/dev/isapnp/isapnpres.c @@ -1,4 +1,4 @@ -/* $NetBSD: isapnpres.c,v 1.2 1997/01/22 23:51:38 mycroft Exp $ */ +/* $NetBSD: isapnpres.c,v 1.3 1997/01/24 21:17:19 veego Exp $ */ /* * Copyright (c) 1996 Christos Zoulas. All rights reserved. @@ -63,7 +63,7 @@ isapnp_wait_status(sc) for (i = 0; i < 10; i++) { if (isapnp_read_reg(sc, ISAPNP_STATUS) & 1) return 0; - DELAY(100); + DELAY(40); } return 1; }