[PATCH] Add macio_bus_type probe and remove methods
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk> Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
30226f8199
commit
4866b124a1
|
@ -211,6 +211,9 @@ struct bus_type macio_bus_type = {
|
||||||
.name = "macio",
|
.name = "macio",
|
||||||
.match = macio_bus_match,
|
.match = macio_bus_match,
|
||||||
.uevent = macio_uevent,
|
.uevent = macio_uevent,
|
||||||
|
.probe = macio_device_probe,
|
||||||
|
.remove = macio_device_remove,
|
||||||
|
.shutdown = macio_device_shutdown,
|
||||||
.suspend = macio_device_suspend,
|
.suspend = macio_device_suspend,
|
||||||
.resume = macio_device_resume,
|
.resume = macio_device_resume,
|
||||||
.dev_attrs = macio_dev_attrs,
|
.dev_attrs = macio_dev_attrs,
|
||||||
|
@ -528,9 +531,6 @@ int macio_register_driver(struct macio_driver *drv)
|
||||||
/* initialize common driver fields */
|
/* initialize common driver fields */
|
||||||
drv->driver.name = drv->name;
|
drv->driver.name = drv->name;
|
||||||
drv->driver.bus = &macio_bus_type;
|
drv->driver.bus = &macio_bus_type;
|
||||||
drv->driver.probe = macio_device_probe;
|
|
||||||
drv->driver.remove = macio_device_remove;
|
|
||||||
drv->driver.shutdown = macio_device_shutdown;
|
|
||||||
|
|
||||||
/* register with core */
|
/* register with core */
|
||||||
count = driver_register(&drv->driver);
|
count = driver_register(&drv->driver);
|
||||||
|
|
Loading…
Reference in New Issue