summaryrefslogtreecommitdiff
path: root/sys/dev/rp
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2000-05-28 13:40:48 +0000
committerPeter Wemm <peter@FreeBSD.org>2000-05-28 13:40:48 +0000
commit6a4c2576dc38451d20c994bd9aaa237052ef5a6c (patch)
tree7d2bcb981eaa33af24a486d43171ff1e2bd0f29a /sys/dev/rp
parent23dff9e0660784a140878911c18423e5cec4fa46 (diff)
Notes
Diffstat (limited to 'sys/dev/rp')
-rw-r--r--sys/dev/rp/rp.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/sys/dev/rp/rp.c b/sys/dev/rp/rp.c
index bc846d5291fe..a858496df050 100644
--- a/sys/dev/rp/rp.c
+++ b/sys/dev/rp/rp.c
@@ -40,12 +40,13 @@
#include <sys/param.h>
#include <sys/systm.h>
+#include <sys/kernel.h>
#include <sys/fcntl.h>
#include <sys/malloc.h>
#include <sys/tty.h>
#include <sys/proc.h>
#include <sys/conf.h>
-#include <sys/kernel.h>
+#include <sys/bus.h>
#include <i386/isa/isa_device.h>
@@ -787,8 +788,12 @@ COMPAT_PCI_DRIVER (rp_pci, rp_pcidevice);
static timeout_t rpdtrwakeup;
struct isa_driver rpdriver = {
- rpprobe, rpattach, "rp"
- };
+ INTR_TYPE_TTY,
+ rpprobe,
+ rpattach,
+ "rp"
+};
+COMPAT_ISA_DRIVER(rp, rpdriver);
static char driver_name[] = "rp";