Skip to content
Snippets Groups Projects
Commit fc3d3ddd authored by Russell King's avatar Russell King Committed by Greg Kroah-Hartman
Browse files

[PATCH] Add rio_bus_type probe and remove methods

parent b6a01e9b
No related merge requests found
...@@ -147,8 +147,6 @@ int rio_register_driver(struct rio_driver *rdrv) ...@@ -147,8 +147,6 @@ int rio_register_driver(struct rio_driver *rdrv)
/* initialize common driver fields */ /* initialize common driver fields */
rdrv->driver.name = rdrv->name; rdrv->driver.name = rdrv->name;
rdrv->driver.bus = &rio_bus_type; rdrv->driver.bus = &rio_bus_type;
rdrv->driver.probe = rio_device_probe;
rdrv->driver.remove = rio_device_remove;
/* register with core */ /* register with core */
return driver_register(&rdrv->driver); return driver_register(&rdrv->driver);
...@@ -204,7 +202,9 @@ static struct device rio_bus = { ...@@ -204,7 +202,9 @@ static struct device rio_bus = {
struct bus_type rio_bus_type = { struct bus_type rio_bus_type = {
.name = "rapidio", .name = "rapidio",
.match = rio_match_bus, .match = rio_match_bus,
.dev_attrs = rio_dev_attrs .dev_attrs = rio_dev_attrs,
.probe = rio_device_probe,
.remove = rio_device_remove,
}; };
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment