mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-11 09:50:12 +00:00
Print "on isa" for devices with port==0 per Bruce suggestion
This commit is contained in:
parent
5f34517b1c
commit
a30090c5f7
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=7645
@ -34,7 +34,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)isa.c 7.2 (Berkeley) 5/13/91
|
||||
* $Id: isa.c,v 1.42 1995/03/28 07:55:38 bde Exp $
|
||||
* $Id: isa.c,v 1.43 1995/04/04 22:48:40 ache Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -453,7 +453,7 @@ config_isadev_c(isdp, mp, reconfig)
|
||||
printf(" msize %d", isdp->id_msize);
|
||||
if (isdp->id_flags)
|
||||
printf(" flags 0x%x", isdp->id_flags);
|
||||
if (!(isdp->id_iobase & 0xf300)) {
|
||||
if (isdp->id_iobase && !(isdp->id_iobase & 0xf300)) {
|
||||
printf(" on motherboard");
|
||||
} else if (isdp->id_iobase >= 0x1000 &&
|
||||
!(isdp->id_iobase & 0x300)) {
|
||||
|
@ -34,7 +34,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)isa.c 7.2 (Berkeley) 5/13/91
|
||||
* $Id: isa.c,v 1.42 1995/03/28 07:55:38 bde Exp $
|
||||
* $Id: isa.c,v 1.43 1995/04/04 22:48:40 ache Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -453,7 +453,7 @@ config_isadev_c(isdp, mp, reconfig)
|
||||
printf(" msize %d", isdp->id_msize);
|
||||
if (isdp->id_flags)
|
||||
printf(" flags 0x%x", isdp->id_flags);
|
||||
if (!(isdp->id_iobase & 0xf300)) {
|
||||
if (isdp->id_iobase && !(isdp->id_iobase & 0xf300)) {
|
||||
printf(" on motherboard");
|
||||
} else if (isdp->id_iobase >= 0x1000 &&
|
||||
!(isdp->id_iobase & 0x300)) {
|
||||
|
Loading…
Reference in New Issue
Block a user