diff options
author | msmith <msmith@FreeBSD.org> | 2000-09-11 23:19:13 +0000 |
---|---|---|
committer | msmith <msmith@FreeBSD.org> | 2000-09-11 23:19:13 +0000 |
commit | 789d5e9f4c6ac13c7256191a9b0fe96e22e1ebbc (patch) | |
tree | e5bac75950e01869b1becb350d091e60b361165f /sys/dev/amr | |
parent | 6e116d9b292eed843242193247f15ceb0c7d6668 (diff) | |
download | FreeBSD-src-789d5e9f4c6ac13c7256191a9b0fe96e22e1ebbc.zip FreeBSD-src-789d5e9f4c6ac13c7256191a9b0fe96e22e1ebbc.tar.gz |
Whoops. The AMR_QUARTZ_GOFASTER option is meant to disable, not enable
this check. It looks like it doesn't work on at least the 466 controllers.
Diffstat (limited to 'sys/dev/amr')
-rw-r--r-- | sys/dev/amr/amr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/amr/amr.c b/sys/dev/amr/amr.c index dec047a..cdf87f1 100644 --- a/sys/dev/amr/amr.c +++ b/sys/dev/amr/amr.c @@ -1391,7 +1391,7 @@ amr_quartz_get_work(struct amr_softc *sc, struct amr_mailbox *mbsave) /* acknowledge that we have the commands */ AMR_QPUT_IDB(sc, sc->amr_mailboxphys | AMR_QIDB_ACK); -#if AMR_QUARTZ_GOFASTER +#ifndef AMR_QUARTZ_GOFASTER /* * This waits for the controller to notice that we've taken the * command from it. It's very inefficient, and we shouldn't do it, |