summaryrefslogtreecommitdiff
path: root/sys/dev/dpt
diff options
context:
space:
mode:
authorDoug Rabson <dfr@FreeBSD.org>1999-05-08 21:59:43 +0000
committerDoug Rabson <dfr@FreeBSD.org>1999-05-08 21:59:43 +0000
commit566643e39ed0d4d3251a7212073c1e3f79ca95a2 (patch)
tree46d3248879e7658fc2fdcb97949d5ad174921b97 /sys/dev/dpt
parentc85c3a74520d8aa6e5f8cb774a2ab101f5f2698d (diff)
Notes
Diffstat (limited to 'sys/dev/dpt')
-rw-r--r--sys/dev/dpt/dpt_eisa.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/dpt/dpt_eisa.c b/sys/dev/dpt/dpt_eisa.c
index a8b24484d338..e38ea664136e 100644
--- a/sys/dev/dpt/dpt_eisa.c
+++ b/sys/dev/dpt/dpt_eisa.c
@@ -33,7 +33,7 @@
*/
/*
- * $Id: dpt_eisa.c,v 1.4 1998/09/15 08:33:35 gibbs Exp $
+ * $Id: dpt_eisa.c,v 1.5 1999/04/18 15:50:33 peter Exp $
*/
#include "eisa.h"
@@ -174,7 +174,7 @@ dpt_eisa_attach(device_t dev)
/* Register with the XPT */
dpt_attach(dpt);
- bus_setup_intr(dev, irq, dpt_intr, dpt, &ih);
+ bus_setup_intr(dev, irq, INTR_TYPE_CAM, dpt_intr, dpt, &ih);
splx(s);
@@ -250,7 +250,6 @@ static device_method_t dpt_eisa_methods[] = {
static driver_t dpt_eisa_driver = {
"dpt",
dpt_eisa_methods,
- DRIVER_TYPE_CAM,
1, /* unused */
};