summaryrefslogtreecommitdiffstats
path: root/sys/i386/isa/asc.c
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>2000-05-28 13:40:48 +0000
committerpeter <peter@FreeBSD.org>2000-05-28 13:40:48 +0000
commitda78ae6c9675a977414b94dce05e10ea7794242c (patch)
treeb698cb70726751826f1f715167f5f658303053f2 /sys/i386/isa/asc.c
parent8a48a8126ed656b68c8dd9d9f7dc0626b8a25ec1 (diff)
downloadFreeBSD-src-da78ae6c9675a977414b94dce05e10ea7794242c.zip
FreeBSD-src-da78ae6c9675a977414b94dce05e10ea7794242c.tar.gz
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.
Diffstat (limited to 'sys/i386/isa/asc.c')
-rw-r--r--sys/i386/isa/asc.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/sys/i386/isa/asc.c b/sys/i386/isa/asc.c
index 1658d38..8b09619 100644
--- a/sys/i386/isa/asc.c
+++ b/sys/i386/isa/asc.c
@@ -47,6 +47,7 @@
#include <sys/poll.h>
#include <sys/select.h>
#include <sys/uio.h>
+#include <sys/bus.h>
#include <machine/asc_ioctl.h>
@@ -54,6 +55,10 @@
#include <i386/isa/isa_device.h>
#include <i386/isa/ascreg.h>
+#ifndef COMPAT_OLDISA
+#error "The asc device requires the old isa compatibility shims"
+#endif
+
/***
*** CONSTANTS & DEFINES
***
@@ -173,7 +178,14 @@ static struct asc_unit unittab[NASC];
***/
static int ascprobe (struct isa_device *isdp);
static int ascattach(struct isa_device *isdp);
-struct isa_driver ascdriver = { ascprobe, ascattach, "asc" };
+
+struct isa_driver ascdriver = {
+ INTR_TYPE_TTY,
+ ascprobe,
+ ascattach,
+ "asc"
+};
+COMPAT_ISA_DRIVER(asc, ascdriver);
static ointhand2_t ascintr;
OpenPOWER on IntegriCloud