Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-6]: src/sys/dev/ic Pullup patch (requested by bouyer in ticket ...



details:   https://anonhg.NetBSD.org/src/rev/9d3977161b88
branches:  netbsd-1-6
changeset: 531204:9d3977161b88
user:      jmc <jmc%NetBSD.org@localhost>
date:      Sun Mar 28 22:24:10 2004 +0000

description:
Pullup patch (requested by bouyer in ticket #1637)

Wait a bit more after reset before re-enabling interrupts. PR#24904

diffstat:

 sys/dev/ic/wdc.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 8cc01cf92213 -r 9d3977161b88 sys/dev/ic/wdc.c
--- a/sys/dev/ic/wdc.c  Sun Mar 28 22:14:48 2004 +0000
+++ b/sys/dev/ic/wdc.c  Sun Mar 28 22:24:10 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: wdc.c,v 1.114.4.3 2003/09/24 11:16:43 tron Exp $ */
+/*     $NetBSD: wdc.c,v 1.114.4.4 2004/03/28 22:24:10 jmc Exp $ */
 
 
 /*
@@ -72,7 +72,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: wdc.c,v 1.114.4.3 2003/09/24 11:16:43 tron Exp $");
+__KERNEL_RCSID(0, "$NetBSD: wdc.c,v 1.114.4.4 2004/03/28 22:24:10 jmc Exp $");
 
 #ifndef WDCDEBUG
 #define WDCDEBUG
@@ -237,7 +237,7 @@
        DELAY(1000);
        bus_space_write_1(chp->ctl_iot, chp->ctl_ioh, wd_aux_ctlr,
            WDCTL_IDS);
-       delay(1000);
+       delay(2000);
        (void) bus_space_read_1(chp->cmd_iot, chp->cmd_ioh, wd_error);
        bus_space_write_1(chp->ctl_iot, chp->ctl_ioh, wd_aux_ctlr, WDCTL_4BIT);
        delay(10);



Home | Main Index | Thread Index | Old Index