Synchronize with sys/i386/isa/isa.c revision 1.79.
This commit is contained in:
parent
ce862ff5d3
commit
e41d6d04fc
@ -34,7 +34,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)isa.c 7.2 (Berkeley) 5/13/91
|
||||
* $Id: pc98.c,v 1.18 1997/02/22 09:43:42 peter Exp $
|
||||
* $Id: pc98.c,v 1.19 1997/03/22 18:54:54 kato Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -418,11 +418,15 @@ config_isadev_c(isdp, mp, reconfig)
|
||||
if (!isdp->id_reconfig) {
|
||||
printf("%s%d", dp->name, isdp->id_unit);
|
||||
if (id_alive != -1) {
|
||||
printf(" at 0x%x", isdp->id_iobase);
|
||||
if (isdp->id_iobase + id_alive - 1 !=
|
||||
isdp->id_iobase) {
|
||||
printf("-0x%x",
|
||||
isdp->id_iobase + id_alive - 1);
|
||||
if (isdp->id_iobase == -1)
|
||||
printf(" at ?");
|
||||
else if (isdp->id_iobase != -2) {
|
||||
printf(" at 0x%x", isdp->id_iobase);
|
||||
if (isdp->id_iobase + id_alive - 1 !=
|
||||
isdp->id_iobase) {
|
||||
printf("-0x%x",
|
||||
isdp->id_iobase + id_alive - 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (isdp->id_irq)
|
||||
@ -479,9 +483,10 @@ config_isadev_c(isdp, mp, reconfig)
|
||||
if (!isdp->id_reconfig) {
|
||||
printf("%s%d not found",
|
||||
dp->name, isdp->id_unit);
|
||||
if (isdp->id_iobase) {
|
||||
if (isdp->id_iobase == -1)
|
||||
printf(" at ?");
|
||||
else if (isdp->id_iobase != -2)
|
||||
printf(" at 0x%x", isdp->id_iobase);
|
||||
}
|
||||
printf("\n");
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user