Deleted Added
full compact
28c28
< __FBSDID("$FreeBSD: head/sys/dev/gpio/gpiobus.c 279620 2015-03-05 01:49:58Z loos $");
---
> __FBSDID("$FreeBSD: head/sys/dev/gpio/gpiobus.c 279622 2015-03-05 03:11:47Z loos $");
233c233
< gpiobus_map_pin(device_t bus, device_t child, uint32_t pin)
---
> gpiobus_map_pin(device_t bus, uint32_t pin)
240c240
< device_printf(child,
---
> device_printf(bus,
246,247c246
< device_printf(child,
< "warning: pin %d is already mapped\n", pin);
---
> device_printf(bus, "warning: pin %d is already mapped\n", pin);
280c279
< if (gpiobus_map_pin(sc->sc_busdev, child, i) != 0) {
---
> if (gpiobus_map_pin(sc->sc_busdev, i) != 0) {