diff options
| author | Warner Losh <imp@FreeBSD.org> | 1998-10-15 19:53:30 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 1998-10-15 19:53:30 +0000 |
| commit | ca1a3d8c332f47c64efe89bda79726547056fc85 (patch) | |
| tree | f547e91016d8ecfcade1994bd88fabc8f1a94f30 /sys/dev/aha | |
| parent | 25a6a054af4056da8cd45951f929b119da4ca2ad (diff) | |
Notes
Diffstat (limited to 'sys/dev/aha')
| -rw-r--r-- | sys/dev/aha/aha.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/aha/aha.c b/sys/dev/aha/aha.c index c25af1e57c32..e8795426f0b9 100644 --- a/sys/dev/aha/aha.c +++ b/sys/dev/aha/aha.c @@ -55,7 +55,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aha.c,v 1.7 1998/10/02 04:37:48 imp Exp $ + * $Id: aha.c,v 1.8 1998/10/09 21:38:36 gibbs Exp $ */ #include <sys/param.h> @@ -401,11 +401,11 @@ aha_fetch_adapter_info(struct aha_softc *aha) printf("%s: Likely aha 1542A, which might not work properly\n", aha_name(aha)); - aha->max_sg = 17; + aha->max_sg = 17; /* Need 17 to do 64k I/O */ aha->diff_bus = 0; aha->extended_lun = 0; aha->extended_trans = 0; - aha->max_ccbs = 17; /* Need 17 to do 64k I/O */ + aha->max_ccbs = 16; /* Determine Sync/Wide/Disc settings */ length_param = sizeof(setup_info); error = aha_cmd(aha, BOP_INQUIRE_SETUP_INFO, &length_param, |
