aboutsummaryrefslogtreecommitdiff
path: root/sys/amd64/isa
diff options
context:
space:
mode:
authorRodney W. Grimes <rgrimes@FreeBSD.org>1993-06-18 22:18:57 +0000
committerRodney W. Grimes <rgrimes@FreeBSD.org>1993-06-18 22:18:57 +0000
commit4232df2cf02ba76c833a59af496e73e3a8a4ae3b (patch)
tree46264104333d3321136d19924f7d3dfd41e4d0b9 /sys/amd64/isa
parent16f4391768f93a1c88028e578ee2c3b1dcf2c63a (diff)
downloadsrc-4232df2cf02ba76c833a59af496e73e3a8a4ae3b.tar.gz
src-4232df2cf02ba76c833a59af496e73e3a8a4ae3b.zip
Obsolete if_we.c driver, more attach call to where it belongs.
Still need to fix all the drivers.
Notes
Notes: svn path=/head/; revision=24
Diffstat (limited to 'sys/amd64/isa')
-rw-r--r--sys/amd64/isa/isa.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/sys/amd64/isa/isa.c b/sys/amd64/isa/isa.c
index 8707b43d4c68..4b69bbf6175d 100644
--- a/sys/amd64/isa/isa.c
+++ b/sys/amd64/isa/isa.c
@@ -53,7 +53,7 @@
* aid in bug reports.
* 27 May 93 Guido van Rooij New routine add find_isa_dev
*/
-static char rcsid[] = "$Header: /usr/src/sys.386bsd/i386/isa/RCS/isa.c,v 1.2 92/01/21 14:34:23 william Exp Locker: root $";
+static char rcsid[] = "$Header: /home/cvs/386BSD/src/sys.386bsd/i386/isa/isa.c,v 1.1.1.1 1993/06/12 14:58:01 rgrimes Exp $";
/*
* code to manage AT bus
@@ -236,13 +236,6 @@ config_isadev(isdp, mp)
if (isdp->id_alive) {
printf("%s%d", dp->name, isdp->id_unit);
/*
- * The attach should really be after all the printf's
- * but until all the drivers are fixed do it here.
- * There is a comment below that shows where this
- * really belongs. Rod Grimes 04/10/93
- */
- (*dp->attach)(isdp);
- /*
* Only print the I/O address range if id_alive != -1
* Right now this is a temporary fix just for the new
* NPX code so that if it finds a 486 that can use trap
@@ -269,7 +262,8 @@ config_isadev(isdp, mp)
printf(" flags 0x%x", isdp->id_flags);
printf(" on isa\n");
- /* This is the place the attach should be done! */
+ (*dp->attach)(isdp);
+
if(isdp->id_irq) {
int intrno;