Commit a1263c71 authored by Brian King's avatar Brian King Committed by Benjamin Herrenschmidt

powerpc/vio: Switch VIO Bus PM to use generic helpers

Switch to use the generic power management helpers.
Signed-off-by: default avatarBrian King <brking@linux.vnet.ibm.com>
Signed-off-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
parent e62cee42
...@@ -1381,29 +1381,6 @@ static int vio_hotplug(struct device *dev, struct kobj_uevent_env *env) ...@@ -1381,29 +1381,6 @@ static int vio_hotplug(struct device *dev, struct kobj_uevent_env *env)
return 0; return 0;
} }
static int vio_pm_suspend(struct device *dev)
{
const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
if (pm && pm->suspend)
return pm->suspend(dev);
return 0;
}
static int vio_pm_resume(struct device *dev)
{
const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
if (pm && pm->resume)
return pm->resume(dev);
return 0;
}
const struct dev_pm_ops vio_dev_pm_ops = {
.suspend = vio_pm_suspend,
.resume = vio_pm_resume,
};
static struct bus_type vio_bus_type = { static struct bus_type vio_bus_type = {
.name = "vio", .name = "vio",
.dev_attrs = vio_dev_attrs, .dev_attrs = vio_dev_attrs,
...@@ -1411,7 +1388,7 @@ static struct bus_type vio_bus_type = { ...@@ -1411,7 +1388,7 @@ static struct bus_type vio_bus_type = {
.match = vio_bus_match, .match = vio_bus_match,
.probe = vio_bus_probe, .probe = vio_bus_probe,
.remove = vio_bus_remove, .remove = vio_bus_remove,
.pm = &vio_dev_pm_ops, .pm = GENERIC_SUBSYS_PM_OPS,
}; };
/** /**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment