diff options
author | simokawa <simokawa@FreeBSD.org> | 2002-11-05 02:42:28 +0000 |
---|---|---|
committer | simokawa <simokawa@FreeBSD.org> | 2002-11-05 02:42:28 +0000 |
commit | 0c6061a847ff2b59f49da70141593de25dc9906a (patch) | |
tree | 1af5706eba0048a3bce9428461ea84ebd8fbbf12 | |
parent | e05e16efa1b6fdbeab87f3c35f6dd106ed1789c9 (diff) | |
download | FreeBSD-src-0c6061a847ff2b59f49da70141593de25dc9906a.zip FreeBSD-src-0c6061a847ff2b59f49da70141593de25dc9906a.tar.gz |
Sony CXD3222 OHCI i.LINK chips needs more DELAY before starting SCLK
when no devices are connected.
-rw-r--r-- | sys/dev/firewire/fwohci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/firewire/fwohci.c b/sys/dev/firewire/fwohci.c index 4cc6846..96b1f24 100644 --- a/sys/dev/firewire/fwohci.c +++ b/sys/dev/firewire/fwohci.c @@ -494,7 +494,7 @@ int fwohci_init(struct fwohci_softc *sc, device_t dev) #endif OWRITE(sc, OHCI_HCCCTL, OHCI_HCC_LPS); /* XXX wait for SCLK. */ - DELAY(10000); + DELAY(100000); reg = OREAD(sc, OHCI_BUS_OPT); reg2 = reg | OHCI_BUSFNC; |