summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorscottl <scottl@FreeBSD.org>2004-06-24 18:30:08 +0000
committerscottl <scottl@FreeBSD.org>2004-06-24 18:30:08 +0000
commitb76ce33197cc89597b3b5b40149871987bc6e2f4 (patch)
tree021103d1ca7d27fac0a1dbb706b1546a12af437f /sys
parent08157e234b3c36e4fa74e4c6035be9f2ad569c9f (diff)
downloadFreeBSD-src-b76ce33197cc89597b3b5b40149871987bc6e2f4.zip
FreeBSD-src-b76ce33197cc89597b3b5b40149871987bc6e2f4.tar.gz
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.
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/twa/twa_freebsd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/twa/twa_freebsd.c b/sys/dev/twa/twa_freebsd.c
index 09642c1..84ea6ad 100644
--- a/sys/dev/twa/twa_freebsd.c
+++ b/sys/dev/twa/twa_freebsd.c
@@ -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 */
OpenPOWER on IntegriCloud