diff options
author | peter <peter@FreeBSD.org> | 2000-05-28 13:40:48 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2000-05-28 13:40:48 +0000 |
commit | da78ae6c9675a977414b94dce05e10ea7794242c (patch) | |
tree | b698cb70726751826f1f715167f5f658303053f2 /sys/i386/isa/stallion.c | |
parent | 8a48a8126ed656b68c8dd9d9f7dc0626b8a25ec1 (diff) | |
download | FreeBSD-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/stallion.c')
-rw-r--r-- | sys/i386/isa/stallion.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/i386/isa/stallion.c b/sys/i386/isa/stallion.c index 4194878..e6288c9 100644 --- a/sys/i386/isa/stallion.c +++ b/sys/i386/isa/stallion.c @@ -50,6 +50,7 @@ #include <sys/proc.h> #include <sys/conf.h> #include <sys/fcntl.h> +#include <sys/bus.h> #include <i386/isa/isa_device.h> #include <i386/isa/ic/scd1400.h> #include <machine/comstats.h> @@ -494,8 +495,12 @@ static void stlpciintr(void * arg); * Declare the driver isa structure. */ struct isa_driver stldriver = { - stlprobe, stlattach, "stl" + INTR_TYPE_TTY, + stlprobe, + stlattach, + "stl" }; +COMPAT_ISA_DRIVER(stl, stldriver); /*****************************************************************************/ |