1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-14 10:09:48 +00:00

Reversed my patch from yesterday. "eisa" if >= 0x1000.

pas0 will be in "eisa", even though it isn't.
This commit is contained in:
Poul-Henning Kamp 1994-09-13 17:06:47 +00:00
parent 49fbc2ac87
commit 70fd1674ef
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=2739
2 changed files with 4 additions and 4 deletions

View File

@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)isa.c 7.2 (Berkeley) 5/13/91
* $Id: isa.c,v 1.22 1994/09/02 22:13:33 ats Exp $
* $Id: isa.c,v 1.23 1994/09/13 06:43:57 phk Exp $
*/
/*
@ -374,7 +374,7 @@ config_isadev(isdp, mp)
if (isdp->id_iobase < 0x100) {
printf(" on motherboard\n");
} else {
if ((isdp->id_iobase & 0xFFF) >= 0x400) {
if (isdp->id_iobase >= 0x1000) {
printf (" on eisa\n");
} else {
printf (" on isa\n");

View File

@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)isa.c 7.2 (Berkeley) 5/13/91
* $Id: isa.c,v 1.22 1994/09/02 22:13:33 ats Exp $
* $Id: isa.c,v 1.23 1994/09/13 06:43:57 phk Exp $
*/
/*
@ -374,7 +374,7 @@ config_isadev(isdp, mp)
if (isdp->id_iobase < 0x100) {
printf(" on motherboard\n");
} else {
if ((isdp->id_iobase & 0xFFF) >= 0x400) {
if (isdp->id_iobase >= 0x1000) {
printf (" on eisa\n");
} else {
printf (" on isa\n");