Updated the TODO file with missing things.

Changed the output of the isa probe routine, that only devices, that
have an IO address and are smaller than 0x100 to be on the motherboard.
The seagate SCSI adapter is an example of a card, that doesn't have
an IO address and works only memory mapped.
This commit is contained in:
Andreas Schulz 1994-01-16 11:25:06 +00:00
parent c6863af480
commit e8f1fa7451
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.10 1993/11/25 01:31:39 wollman Exp $
* $Id: isa.c,v 1.11 1993/12/19 00:50:41 wollman Exp $
*/
/*
@ -293,7 +293,7 @@ config_isadev(isdp, mp)
printf(" msize %d", isdp->id_msize);
if (isdp->id_flags)
printf(" flags 0x%x", isdp->id_flags);
if (isdp->id_iobase < 0x100)
if (isdp->id_iobase && isdp->id_iobase < 0x100))
printf(" on motherboard\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.10 1993/11/25 01:31:39 wollman Exp $
* $Id: isa.c,v 1.11 1993/12/19 00:50:41 wollman Exp $
*/
/*
@ -293,7 +293,7 @@ config_isadev(isdp, mp)
printf(" msize %d", isdp->id_msize);
if (isdp->id_flags)
printf(" flags 0x%x", isdp->id_flags);
if (isdp->id_iobase < 0x100)
if (isdp->id_iobase && isdp->id_iobase < 0x100))
printf(" on motherboard\n");
else
printf(" on isa\n");