[PATCH] Add zorro_bus_type probe and remove methods
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
ac33bc3d54
commit
b6a01e9bda
@@ -77,7 +77,6 @@ int zorro_register_driver(struct zorro_driver *drv)
|
|||||||
/* initialize common driver fields */
|
/* initialize common driver fields */
|
||||||
drv->driver.name = drv->name;
|
drv->driver.name = drv->name;
|
||||||
drv->driver.bus = &zorro_bus_type;
|
drv->driver.bus = &zorro_bus_type;
|
||||||
drv->driver.probe = zorro_device_probe;
|
|
||||||
|
|
||||||
/* register with core */
|
/* register with core */
|
||||||
count = driver_register(&drv->driver);
|
count = driver_register(&drv->driver);
|
||||||
@@ -132,7 +131,8 @@ static int zorro_bus_match(struct device *dev, struct device_driver *drv)
|
|||||||
|
|
||||||
struct bus_type zorro_bus_type = {
|
struct bus_type zorro_bus_type = {
|
||||||
.name = "zorro",
|
.name = "zorro",
|
||||||
.match = zorro_bus_match
|
.match = zorro_bus_match,
|
||||||
|
.probe = zorro_device_probe,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user