summaryrefslogtreecommitdiffstats
path: root/sys/dev/bwi
diff options
context:
space:
mode:
authormav <mav@FreeBSD.org>2015-03-22 16:10:28 +0000
committermav <mav@FreeBSD.org>2015-03-22 16:10:28 +0000
commit346273b3b261e7e750cc49355b25c72c654b72f1 (patch)
treea46bd5b9cabd421b2112c53ef637b54114865854 /sys/dev/bwi
parent6b287b9c19515c0b5e97d4273bd836a784e2c4b6 (diff)
downloadFreeBSD-src-346273b3b261e7e750cc49355b25c72c654b72f1.zip
FreeBSD-src-346273b3b261e7e750cc49355b25c72c654b72f1.tar.gz
Remove MAXBSIZE use from drivers where it has nothing to do.
In some cases limits are just not needed, in others -- DFLTPHYS is the right constant to use instead. MFC after: 1 month
Diffstat (limited to 'sys/dev/bwi')
-rw-r--r--sys/dev/bwi/if_bwi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/bwi/if_bwi.c b/sys/dev/bwi/if_bwi.c
index 9e915aa..aa5369a 100644
--- a/sys/dev/bwi/if_bwi.c
+++ b/sys/dev/bwi/if_bwi.c
@@ -1916,7 +1916,7 @@ bwi_dma_alloc(struct bwi_softc *sc)
lowaddr, /* lowaddr */
BUS_SPACE_MAXADDR, /* highaddr */
NULL, NULL, /* filter, filterarg */
- MAXBSIZE, /* maxsize */
+ BUS_SPACE_MAXSIZE, /* maxsize */
BUS_SPACE_UNRESTRICTED, /* nsegments */
BUS_SPACE_MAXSIZE_32BIT, /* maxsegsize */
BUS_DMA_ALLOCNOW, /* flags */
OpenPOWER on IntegriCloud