summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1995-08-09 13:00:25 +0000
committerpeter <peter@FreeBSD.org>1995-08-09 13:00:25 +0000
commit1e1a18756b2feed803677bc3d80ae25309cc9294 (patch)
tree9a8850e461896e0e030cbd9f82b4463d4662ba82
parentfef37cf18fa9282f8cd83cfc08420a91d1cfebe4 (diff)
downloadFreeBSD-src-1e1a18756b2feed803677bc3d80ae25309cc9294.zip
FreeBSD-src-1e1a18756b2feed803677bc3d80ae25309cc9294.tar.gz
Add hook for EISA probe for Specialix EISA card.
Reviewed by: Submitted by: Obtained from:
-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 adbed98..0b7087f 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}
};
OpenPOWER on IntegriCloud