forked from Minki/linux
[PATCH] Add parisc_bus_type probe and remove methods
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk> Acked-by: Matthew Wilcox <matthew@wil.cx> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
83dfb8b675
commit
ad3ed31c68
@ -173,8 +173,6 @@ int register_parisc_driver(struct parisc_driver *driver)
|
||||
WARN_ON(driver->drv.probe != NULL);
|
||||
WARN_ON(driver->drv.remove != NULL);
|
||||
|
||||
driver->drv.probe = parisc_driver_probe;
|
||||
driver->drv.remove = parisc_driver_remove;
|
||||
driver->drv.name = driver->name;
|
||||
|
||||
return driver_register(&driver->drv);
|
||||
@ -575,6 +573,8 @@ struct bus_type parisc_bus_type = {
|
||||
.name = "parisc",
|
||||
.match = parisc_generic_match,
|
||||
.dev_attrs = parisc_device_attrs,
|
||||
.probe = parisc_driver_probe,
|
||||
.remove = parisc_driver_remove,
|
||||
};
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user