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:
Scott Long 2004-06-24 18:30:08 +00:00
parent c3c409c498
commit c63d83f7c2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=131071

View file

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