svn commit: r278415 - stable/10/sys/dev/mwl
Marius Strobl
marius at FreeBSD.org
Sun Feb 8 22:27:18 UTC 2015
Author: marius
Date: Sun Feb 8 22:27:17 2015
New Revision: 278415
URL: https://svnweb.freebsd.org/changeset/base/278415
Log:
MFC: r275870
Use the correct macro for listing the maximum bus space size.
Modified:
stable/10/sys/dev/mwl/if_mwl_pci.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/dev/mwl/if_mwl_pci.c
==============================================================================
--- stable/10/sys/dev/mwl/if_mwl_pci.c Sun Feb 8 22:24:18 2015 (r278414)
+++ stable/10/sys/dev/mwl/if_mwl_pci.c Sun Feb 8 22:27:17 2015 (r278415)
@@ -175,9 +175,9 @@ mwl_pci_attach(device_t dev)
BUS_SPACE_MAXADDR_32BIT, /* lowaddr */
BUS_SPACE_MAXADDR, /* highaddr */
NULL, NULL, /* filter, filterarg */
- BUS_SPACE_MAXADDR, /* maxsize */
+ BUS_SPACE_MAXSIZE, /* maxsize */
MWL_TXDESC, /* nsegments */
- BUS_SPACE_MAXADDR, /* maxsegsize */
+ BUS_SPACE_MAXSIZE, /* maxsegsize */
0, /* flags */
NULL, /* lockfunc */
NULL, /* lockarg */
More information about the svn-src-all
mailing list