Fix the arm64 build by adding an all-important '&' to get a pointer.

I'm not sure how I missed the error when I test-built here, I guess the
pointy hat must have slipped down over my eyes.
This commit is contained in:
Ian Lepore 2016-01-02 21:13:14 +00:00
parent fb57d63e47
commit a195a8e177

View File

@ -49,6 +49,6 @@ OF_decode_addr(phandle_t dev, int regno, bus_space_tag_t *tag,
if (err != 0)
return (err);
*tag = memmap_bus;
*tag = &memmap_bus;
return (bus_space_map(*tag, addr, size, 0, handle));
}