summaryrefslogtreecommitdiffstats
path: root/sys/i386/isa/ctx.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/ctx.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/ctx.c')
-rw-r--r--sys/i386/isa/ctx.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/sys/i386/isa/ctx.c b/sys/i386/isa/ctx.c
index 898b298..b8a2ea2 100644
--- a/sys/i386/isa/ctx.c
+++ b/sys/i386/isa/ctx.c
@@ -112,14 +112,20 @@
#include <sys/param.h>
#include <sys/systm.h>
+#include <sys/kernel.h>
#include <sys/conf.h>
#include <sys/uio.h>
#include <sys/malloc.h>
+#include <sys/bus.h>
#include <i386/isa/isa_device.h>
#include <i386/isa/ctxreg.h>
#include <machine/ioctl_ctx.h>
#include <machine/md_var.h>
+#ifndef COMPAT_OLDISA
+#error "The ctx device requires the old isa compatibility shims"
+#endif
+
static int waitvb(int port);
/* state flags */
@@ -129,7 +135,13 @@ static int waitvb(int port);
static int ctxprobe __P((struct isa_device *devp));
static int ctxattach __P((struct isa_device *devp));
-struct isa_driver ctxdriver = {ctxprobe, ctxattach, "ctx"};
+struct isa_driver ctxdriver = {
+ INTR_TYPE_MISC,
+ ctxprobe,
+ ctxattach,
+ "ctx"
+};
+COMPAT_ISA_DRIVER(ctx, ctxdriver);
static d_open_t ctxopen;
static d_close_t ctxclose;
OpenPOWER on IntegriCloud