diff options
Diffstat (limited to 'sys/dev/sio/sio.c')
-rw-r--r-- | sys/dev/sio/sio.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/dev/sio/sio.c b/sys/dev/sio/sio.c index 5603096..10eb690 100644 --- a/sys/dev/sio/sio.c +++ b/sys/dev/sio/sio.c @@ -766,6 +766,9 @@ sioprobe(dev, xrid, noprobe) printf( "sio%d: configured irq %ld not in bitmap of probed irqs %#x\n", device_get_unit(dev), xirq, irqs); + printf( + "sio%d: port may not be enabled in BIOS\n", + device_get_unit(dev)); if (bootverbose) printf("sio%d: irq maps: %#x %#x %#x %#x\n", device_get_unit(dev), @@ -979,7 +982,7 @@ sioattach(dev, xrid) scr2 = sio_getreg(com, com_scr); sio_setreg(com, com_scr, scr); if (scr1 != 0xa5 || scr2 != 0x5a) { - printf(" 8250"); + printf(" 8250 or not responding"); goto determined_type; } } |