Fix a typo that made the busdma tag have a 0 highaddr. This driver heavily

abuses busdma in other ways, and those will likely be fixed another day.
This commit is contained in:
scottl 2004-06-24 18:30:08 +00:00
parent 25f77e94fc
commit 3181703de0

View File

@ -584,7 +584,7 @@ twa_alloc_req_pkts(struct twa_softc *sc, int num_reqs)
TWA_ALIGNMENT, /* alignment */ TWA_ALIGNMENT, /* alignment */
0, /* boundary */ 0, /* boundary */
BUS_SPACE_MAXADDR, /* lowaddr */ BUS_SPACE_MAXADDR, /* lowaddr */
BUS_SPACE_MAXADDR + 1, /* highaddr */ BUS_SPACE_MAXADDR, /* highaddr */
NULL, NULL, /* filter, filterarg */ NULL, NULL, /* filter, filterarg */
TWA_Q_LENGTH * TWA_Q_LENGTH *
(sizeof(struct twa_command_packet)),/* maxsize */ (sizeof(struct twa_command_packet)),/* maxsize */