diff options
Diffstat (limited to 'arch/powerpc/kernel')
| -rw-r--r-- | arch/powerpc/kernel/of_device.c | 4 | ||||
| -rw-r--r-- | arch/powerpc/kernel/vio.c | 8 | 
2 files changed, 6 insertions, 6 deletions
| diff --git a/arch/powerpc/kernel/of_device.c b/arch/powerpc/kernel/of_device.c index 7065e40e2f42..22d83d4d1af5 100644 --- a/arch/powerpc/kernel/of_device.c +++ b/arch/powerpc/kernel/of_device.c | |||
| @@ -132,6 +132,8 @@ static int of_device_resume(struct device * dev) | |||
| 132 | struct bus_type of_platform_bus_type = { | 132 | struct bus_type of_platform_bus_type = { | 
| 133 | .name = "of_platform", | 133 | .name = "of_platform", | 
| 134 | .match = of_platform_bus_match, | 134 | .match = of_platform_bus_match, | 
| 135 | .probe = of_device_probe, | ||
| 136 | .remove = of_device_remove, | ||
| 135 | .suspend = of_device_suspend, | 137 | .suspend = of_device_suspend, | 
| 136 | .resume = of_device_resume, | 138 | .resume = of_device_resume, | 
| 137 | }; | 139 | }; | 
| @@ -150,8 +152,6 @@ int of_register_driver(struct of_platform_driver *drv) | |||
| 150 | /* initialize common driver fields */ | 152 | /* initialize common driver fields */ | 
| 151 | drv->driver.name = drv->name; | 153 | drv->driver.name = drv->name; | 
| 152 | drv->driver.bus = &of_platform_bus_type; | 154 | drv->driver.bus = &of_platform_bus_type; | 
| 153 | drv->driver.probe = of_device_probe; | ||
| 154 | drv->driver.remove = of_device_remove; | ||
| 155 | 155 | ||
| 156 | /* register with core */ | 156 | /* register with core */ | 
| 157 | count = driver_register(&drv->driver); | 157 | count = driver_register(&drv->driver); | 
| diff --git a/arch/powerpc/kernel/vio.c b/arch/powerpc/kernel/vio.c index 13c41495fe06..13c655ba2841 100644 --- a/arch/powerpc/kernel/vio.c +++ b/arch/powerpc/kernel/vio.c | |||
| @@ -76,7 +76,7 @@ static void vio_bus_shutdown(struct device *dev) | |||
| 76 | struct vio_dev *viodev = to_vio_dev(dev); | 76 | struct vio_dev *viodev = to_vio_dev(dev); | 
| 77 | struct vio_driver *viodrv = to_vio_driver(dev->driver); | 77 | struct vio_driver *viodrv = to_vio_driver(dev->driver); | 
| 78 | 78 | ||
| 79 | if (viodrv->shutdown) | 79 | if (dev->driver && viodrv->shutdown) | 
| 80 | viodrv->shutdown(viodev); | 80 | viodrv->shutdown(viodev); | 
| 81 | } | 81 | } | 
| 82 | 82 | ||
| @@ -91,9 +91,6 @@ int vio_register_driver(struct vio_driver *viodrv) | |||
| 91 | 91 | ||
| 92 | /* fill in 'struct driver' fields */ | 92 | /* fill in 'struct driver' fields */ | 
| 93 | viodrv->driver.bus = &vio_bus_type; | 93 | viodrv->driver.bus = &vio_bus_type; | 
| 94 | viodrv->driver.probe = vio_bus_probe; | ||
| 95 | viodrv->driver.remove = vio_bus_remove; | ||
| 96 | viodrv->driver.shutdown = vio_bus_shutdown; | ||
| 97 | 94 | ||
| 98 | return driver_register(&viodrv->driver); | 95 | return driver_register(&viodrv->driver); | 
| 99 | } | 96 | } | 
| @@ -295,4 +292,7 @@ struct bus_type vio_bus_type = { | |||
| 295 | .name = "vio", | 292 | .name = "vio", | 
| 296 | .uevent = vio_hotplug, | 293 | .uevent = vio_hotplug, | 
| 297 | .match = vio_bus_match, | 294 | .match = vio_bus_match, | 
| 295 | .probe = vio_bus_probe, | ||
| 296 | .remove = vio_bus_remove, | ||
| 297 | .shutdown = vio_bus_shutdown, | ||
| 298 | }; | 298 | }; | 
