diff options
| author | Warner Losh <imp@FreeBSD.org> | 2007-03-05 05:40:24 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2007-03-05 05:40:24 +0000 |
| commit | a9d4f3ded4820715213bbbcff68bc2c72cb614b6 (patch) | |
| tree | 47fde8c2e53b1bf321bdaaf8eb85747cfeb9f276 /sys/dev/pccbb | |
| parent | 0f4481c5e4fbc94727ae9ab2cde6a325aaf52d3d (diff) | |
Notes
Diffstat (limited to 'sys/dev/pccbb')
| -rw-r--r-- | sys/dev/pccbb/pccbb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pccbb/pccbb.c b/sys/dev/pccbb/pccbb.c index 48e17f127e854..3f8fefdf1aec9 100644 --- a/sys/dev/pccbb/pccbb.c +++ b/sys/dev/pccbb/pccbb.c @@ -1226,7 +1226,7 @@ cbb_pcic_power_disable_socket(device_t brdev, device_t child) DPRINTF(("cbb_pcic_socket_disable\n")); - /* Turn off the card's interrupt and leave it in reset */ + /* Turn off the card's interrupt and leave it in reset, wait 10ms */ exca_putb(&sc->exca[0], EXCA_INTR, 0); pause("cbbP1", hz / 100); @@ -1235,7 +1235,7 @@ cbb_pcic_power_disable_socket(device_t brdev, device_t child) exca_putb(&sc->exca[0], EXCA_PWRCTL, 0); /* wait 300ms until power fails (Tpf). */ - pause("cbbP1", hz * 300 / 1000); + pause("cbbP2", hz * 300 / 1000); /* enable CSC interrupts */ exca_putb(&sc->exca[0], EXCA_INTR, EXCA_INTR_ENABLE); |
