diff options
Diffstat (limited to 'drivers/nubus/bus.c')
-rw-r--r-- | drivers/nubus/bus.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/drivers/nubus/bus.c b/drivers/nubus/bus.c index ad3d17c42e23..17fad660032c 100644 --- a/drivers/nubus/bus.c +++ b/drivers/nubus/bus.c @@ -29,14 +29,12 @@ static int nubus_device_probe(struct device *dev) return err; } -static int nubus_device_remove(struct device *dev) +static void nubus_device_remove(struct device *dev) { struct nubus_driver *ndrv = to_nubus_driver(dev->driver); - int err = -ENODEV; - if (dev->driver && ndrv->remove) - err = ndrv->remove(to_nubus_board(dev)); - return err; + if (ndrv->remove) + ndrv->remove(to_nubus_board(dev)); } struct bus_type nubus_bus_type = { |