summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorBrad Smith <brad@cvs.openbsd.org>2006-01-04 22:22:10 +0000
committerBrad Smith <brad@cvs.openbsd.org>2006-01-04 22:22:10 +0000
commit91339e2fbe038a0c52beb0d56cdac038eeae8c09 (patch)
tree415544c0e6ea8912c3eb5fbe50eeeb97d33aa64f /sys
parent1c3977517f8e73bc08fa4b67138495e979310b4b (diff)
Return from interrupt handler after chip init(reset).
From petrov NetBSD ok miod@
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/ic/ncr53c9x.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/ic/ncr53c9x.c b/sys/dev/ic/ncr53c9x.c
index eb06ba0876e..17f7ef8dbe7 100644
--- a/sys/dev/ic/ncr53c9x.c
+++ b/sys/dev/ic/ncr53c9x.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ncr53c9x.c,v 1.26 2006/01/04 20:49:32 miod Exp $ */
+/* $OpenBSD: ncr53c9x.c,v 1.27 2006/01/04 22:22:09 brad Exp $ */
/* $NetBSD: ncr53c9x.c,v 1.56 2000/11/30 14:41:46 thorpej Exp $ */
/*
@@ -2034,6 +2034,7 @@ again:
printf("%s: DMA error; resetting\n",
sc->sc_dev.dv_xname);
ncr53c9x_init(sc, 1);
+ return (1);
}
/* If DMA active here, then go back to work... */
if (NCRDMA_ISACTIVE(sc))