aboutsummaryrefslogtreecommitdiff
path: root/sys/i386/eisa
diff options
context:
space:
mode:
authorStefan Eßer <se@FreeBSD.org>1996-01-23 21:48:28 +0000
committerStefan Eßer <se@FreeBSD.org>1996-01-23 21:48:28 +0000
commitdd7610fca4d085d0e76780b59fe4d6cef663bde2 (patch)
tree0c05d619dce00b4358e22aba692e8f11615d00c7 /sys/i386/eisa
parentac09ec51082d592226f4704b63d8f1c0aac73ba6 (diff)
downloadsrc-dd7610fca4d085d0e76780b59fe4d6cef663bde2.tar.gz
src-dd7610fca4d085d0e76780b59fe4d6cef663bde2.zip
Make PCI interrupt handlers return void like everybody else does.
Reviewed by: davidg
Notes
Notes: svn path=/head/; revision=13597
Diffstat (limited to 'sys/i386/eisa')
-rw-r--r--sys/i386/eisa/aic7770.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/i386/eisa/aic7770.c b/sys/i386/eisa/aic7770.c
index 088b4b5c456d..b7da311f7909 100644
--- a/sys/i386/eisa/aic7770.c
+++ b/sys/i386/eisa/aic7770.c
@@ -19,7 +19,7 @@
* 4. Modifications may be freely made to this file if the above conditions
* are met.
*
- * $Id: aic7770.c,v 1.20 1995/12/14 23:23:48 bde Exp $
+ * $Id: aic7770.c,v 1.21 1996/01/03 06:28:00 gibbs Exp $
*/
#include "eisa.h"
@@ -188,7 +188,7 @@ aic7770_attach(e_dev)
* The IRQMS bit enables level sensitive interrupts only allow
* IRQ sharing if its set.
*/
- if(eisa_reg_intr(e_dev, irq, ahc_eisa_intr, (void *)ahc, &bio_imask,
+ if(eisa_reg_intr(e_dev, irq, ahc_intr, (void *)ahc, &bio_imask,
/*shared ==*/ahc->pause & IRQMS)) {
ahc_free(ahc);
return -1;
@@ -307,7 +307,7 @@ aic7770_attach(e_dev)
* The board's IRQ line is not yet enabled so its safe
* to release the irq.
*/
- eisa_release_intr(e_dev, irq, ahc_eisa_intr);
+ eisa_release_intr(e_dev, irq, ahc_intr);
return -1;
}
@@ -321,7 +321,7 @@ aic7770_attach(e_dev)
*/
if(eisa_enable_intr(e_dev, irq)) {
ahc_free(ahc);
- eisa_release_intr(e_dev, irq, ahc_eisa_intr);
+ eisa_release_intr(e_dev, irq, ahc_intr);
return -1;
}