diff options
author | marius <marius@FreeBSD.org> | 2015-02-08 22:29:57 +0000 |
---|---|---|
committer | marius <marius@FreeBSD.org> | 2015-02-08 22:29:57 +0000 |
commit | bded83f8358e58b35285a8f15fe5bbebf04c675c (patch) | |
tree | 0bd8f7954ba31fdca25fa8430e2fbdcd0561bd7b /sys | |
parent | 25afd7ae71e6eeb39b69c04fcc147ee043fef6fd (diff) | |
download | FreeBSD-src-bded83f8358e58b35285a8f15fe5bbebf04c675c.zip FreeBSD-src-bded83f8358e58b35285a8f15fe5bbebf04c675c.tar.gz |
MFC: r275871
Update the use of bus space macros to be more correct.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/malo/if_malo_pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/malo/if_malo_pci.c b/sys/dev/malo/if_malo_pci.c index de9c39d..50eb718 100644 --- a/sys/dev/malo/if_malo_pci.c +++ b/sys/dev/malo/if_malo_pci.c @@ -223,9 +223,9 @@ malo_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 */ 0, /* nsegments */ - BUS_SPACE_MAXADDR, /* maxsegsize */ + BUS_SPACE_MAXSIZE, /* maxsegsize */ 0, /* flags */ NULL, /* lockfunc */ NULL, /* lockarg */ |