summaryrefslogtreecommitdiff
path: root/sys/dev/isa
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/isa')
-rw-r--r--sys/dev/isa/files.isa7
-rw-r--r--sys/dev/isa/if_ie.c4
2 files changed, 5 insertions, 6 deletions
diff --git a/sys/dev/isa/files.isa b/sys/dev/isa/files.isa
index ae7ea6c8910..e4fa4349931 100644
--- a/sys/dev/isa/files.isa
+++ b/sys/dev/isa/files.isa
@@ -1,4 +1,4 @@
-# $OpenBSD: files.isa,v 1.61 1999/08/17 06:51:21 fgsch Exp $
+# $OpenBSD: files.isa,v 1.62 1999/08/17 22:47:16 mickey Exp $
# $NetBSD: files.isa,v 1.21 1996/05/16 03:45:55 mycroft Exp $
#
# Config file and device description for machine-independent ISA code.
@@ -187,9 +187,8 @@ file dev/isa/if_fe.c fe
# Intel i82586-based boards
# (AT&T StarLAN 10, AT&T EN100, AT&T StarLAN Fiber, 3Com 3C507)
-device ie: ether, ifnet, elink
-attach ie at isa
-file dev/isa/if_ie.c ie
+attach ie at isa with ie_isa: elink
+file dev/isa/if_ie.c ie_isa
# Intel i82595-based boards.
# (Intel EtherExpress PRO/100)
diff --git a/sys/dev/isa/if_ie.c b/sys/dev/isa/if_ie.c
index b4d8d5e68cb..4013b341185 100644
--- a/sys/dev/isa/if_ie.c
+++ b/sys/dev/isa/if_ie.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_ie.c,v 1.17 1999/03/01 20:45:08 jason Exp $ */
+/* $OpenBSD: if_ie.c,v 1.18 1999/08/17 22:47:16 mickey Exp $ */
/* $NetBSD: if_ie.c,v 1.51 1996/05/12 23:52:48 mycroft Exp $ */
/*-
@@ -323,7 +323,7 @@ static __inline int ie_packet_len __P((struct ie_softc *));
static void chan_attn_timeout __P((void *));
static void run_tdr __P((struct ie_softc *, struct ie_tdr_cmd *));
-struct cfattach ie_ca = {
+struct cfattach ie_isa_ca = {
sizeof(struct ie_softc), ieprobe, ieattach
};