diff options
Diffstat (limited to 'arch/ppc/syslib/ocp.c')
| -rw-r--r-- | arch/ppc/syslib/ocp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/ppc/syslib/ocp.c b/arch/ppc/syslib/ocp.c index 9ccce438bd7a..ab34b1d6072f 100644 --- a/arch/ppc/syslib/ocp.c +++ b/arch/ppc/syslib/ocp.c | |||
| @@ -189,6 +189,8 @@ ocp_device_resume(struct device *dev) | |||
| 189 | struct bus_type ocp_bus_type = { | 189 | struct bus_type ocp_bus_type = { |
| 190 | .name = "ocp", | 190 | .name = "ocp", |
| 191 | .match = ocp_device_match, | 191 | .match = ocp_device_match, |
| 192 | .probe = ocp_driver_probe, | ||
| 193 | .remove = ocp_driver_remove, | ||
| 192 | .suspend = ocp_device_suspend, | 194 | .suspend = ocp_device_suspend, |
| 193 | .resume = ocp_device_resume, | 195 | .resume = ocp_device_resume, |
| 194 | }; | 196 | }; |
| @@ -210,8 +212,6 @@ ocp_register_driver(struct ocp_driver *drv) | |||
| 210 | /* initialize common driver fields */ | 212 | /* initialize common driver fields */ |
| 211 | drv->driver.name = drv->name; | 213 | drv->driver.name = drv->name; |
| 212 | drv->driver.bus = &ocp_bus_type; | 214 | drv->driver.bus = &ocp_bus_type; |
| 213 | drv->driver.probe = ocp_device_probe; | ||
| 214 | drv->driver.remove = ocp_device_remove; | ||
| 215 | 215 | ||
| 216 | /* register with core */ | 216 | /* register with core */ |
| 217 | return driver_register(&drv->driver); | 217 | return driver_register(&drv->driver); |
