Clear the bus reset event flag as soon as possible after

the initialization has completed to start transactions even when
interrupt is disabled during the boot process.
This commit is contained in:
Hidetoshi Shimokawa 2003-02-14 15:52:32 +00:00
parent d1e792e94a
commit c26f4c7168

View File

@ -251,6 +251,15 @@ fwohci_pci_attach(device_t self)
return EIO;
}
/* XXX
* Clear the bus reset event flag to start transactions even when
* interrupt is disabled during the boot process.
*/
#if 0
DELAY(100);
#endif
fwohci_intr((void *)sc);
return 0;
}