Obsolete if_we.c driver, more attach call to where it belongs.

Still need to fix all the drivers.
This commit is contained in:
Rodney W. Grimes 1993-06-18 22:18:57 +00:00
parent 16f4391768
commit 4232df2cf0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=24
2 changed files with 6 additions and 18 deletions

View File

@ -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
@ -235,13 +235,6 @@ config_isadev(isdp, mp)
isdp->id_alive = (*dp->probe)(isdp);
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
@ -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;

View File

@ -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
@ -235,13 +235,6 @@ config_isadev(isdp, mp)
isdp->id_alive = (*dp->probe)(isdp);
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
@ -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;