diff options
Diffstat (limited to 'drivers/nubus')
-rw-r--r-- | drivers/nubus/bus.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/nubus/bus.c b/drivers/nubus/bus.c index 72921e4f35..12df4d8897 100644 --- a/drivers/nubus/bus.c +++ b/drivers/nubus/bus.c @@ -32,12 +32,11 @@ static void nubus_device_remove(struct device *dev) ndrv->remove(to_nubus_board(dev)); } -struct bus_type nubus_bus_type = { +static const struct bus_type nubus_bus_type = { .name = "nubus", .probe = nubus_device_probe, .remove = nubus_device_remove, }; -EXPORT_SYMBOL(nubus_bus_type); int nubus_driver_register(struct nubus_driver *ndrv) { |