aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1995-08-09 13:00:25 +0000
committerPeter Wemm <peter@FreeBSD.org>1995-08-09 13:00:25 +0000
commitffe1908145096631c95c04d0902442346040d6a2 (patch)
tree9a8850e461896e0e030cbd9f82b4463d4662ba82 /sys
parentc48237107de67a568da2aa10fe5bb905b20693c4 (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/i386/eisa/eisadevs.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/i386/eisa/eisadevs.c b/sys/i386/eisa/eisadevs.c
index adbed9864418..0b7087f0a61a 100644
--- a/sys/i386/eisa/eisadevs.c
+++ b/sys/i386/eisa/eisadevs.c
@@ -13,7 +13,7 @@
* on the understanding that TFS is not responsible for the correct
* functioning of this software in any circumstances.
*
- * $Id: eisadevs.c,v 1.1 1995/03/13 09:10:17 root Exp root $
+ * $Id: eisadevs.c,v 1.1 1995/04/23 08:55:43 julian Exp $
*/
/*
@@ -33,6 +33,10 @@
extern struct isa_driver btdriver;
int btintr();
#endif
+#if NSI > 0
+extern struct isa_driver sidriver;
+int siintr();
+#endif
struct eisa_dev eisa_dev[] = {
#if NBT > 0
@@ -40,6 +44,9 @@ struct eisa_dev eisa_dev[] = {
{ "BUS",0x470,0,&bio_imask,{-1,&btdriver,0,0,-1,0,0,btintr,0,0,0,0,0}},
#endif /* NBT > 0 */
/* add your devices here */
+#if NSI > 0
+ { "SLX",0x411,0,&tty_imask,{-1,&sidriver,0,0,-1,0,0,siintr,0,0,0,0,0}},
+#endif /* NSI > 0 */
{0,0,0}
};