From b76ce33197cc89597b3b5b40149871987bc6e2f4 Mon Sep 17 00:00:00 2001 From: scottl Date: Thu, 24 Jun 2004 18:30:08 +0000 Subject: [PATCH] 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. --- sys/dev/twa/twa_freebsd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/twa/twa_freebsd.c b/sys/dev/twa/twa_freebsd.c index 09642c11454..84ea6ad80af 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 */ -- 2.45.2