diff options
-rw-r--r-- | sys/i386/isa/psm.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/i386/isa/psm.c b/sys/i386/isa/psm.c index 3a49181..20684b1 100644 --- a/sys/i386/isa/psm.c +++ b/sys/i386/isa/psm.c @@ -195,8 +195,12 @@ psmprobe(struct isa_device *dvp) #endif psm_poll_status(ioport); outb(ioport+PSM_CNTRL, PSM_AUX_TEST); +#if 0 psm_poll_status(ioport); outb(ioport+PSM_CNTRL, 0xaa); +#else + DELAY(1000); +#endif c = inb(ioport+PSM_DATA); if(c & 0x04) { /* printf("PS/2 AUX mouse is not found\n");*/ |