diff options
-rw-r--r-- | sys/dev/firewire/fwohci_pci.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/dev/firewire/fwohci_pci.c b/sys/dev/firewire/fwohci_pci.c index 45d2646..4681b24 100644 --- a/sys/dev/firewire/fwohci_pci.c +++ b/sys/dev/firewire/fwohci_pci.c @@ -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; } |