From da78ae6c9675a977414b94dce05e10ea7794242c Mon Sep 17 00:00:00 2001 From: peter Date: Sun, 28 May 2000 13:40:48 +0000 Subject: Mass update of isa drivers using compatability shims to use COMPAT_ISA_DRIVER() so that we can get rid of the evil isa_compat.h table. --- sys/dev/rp/rp.c | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'sys/dev/rp') diff --git a/sys/dev/rp/rp.c b/sys/dev/rp/rp.c index bc846d5..a858496 100644 --- a/sys/dev/rp/rp.c +++ b/sys/dev/rp/rp.c @@ -40,12 +40,13 @@ #include #include +#include #include #include #include #include #include -#include +#include #include @@ -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"; -- cgit v1.1