|
@@ -826,28 +826,6 @@ static int locomo_match(struct device *_dev, struct device_driver *_drv)
|
|
|
return dev->devid == drv->devid;
|
|
|
}
|
|
|
|
|
|
-static int locomo_bus_suspend(struct device *dev, pm_message_t state)
|
|
|
-{
|
|
|
- struct locomo_dev *ldev = LOCOMO_DEV(dev);
|
|
|
- struct locomo_driver *drv = LOCOMO_DRV(dev->driver);
|
|
|
- int ret = 0;
|
|
|
-
|
|
|
- if (drv && drv->suspend)
|
|
|
- ret = drv->suspend(ldev, state);
|
|
|
- return ret;
|
|
|
-}
|
|
|
-
|
|
|
-static int locomo_bus_resume(struct device *dev)
|
|
|
-{
|
|
|
- struct locomo_dev *ldev = LOCOMO_DEV(dev);
|
|
|
- struct locomo_driver *drv = LOCOMO_DRV(dev->driver);
|
|
|
- int ret = 0;
|
|
|
-
|
|
|
- if (drv && drv->resume)
|
|
|
- ret = drv->resume(ldev);
|
|
|
- return ret;
|
|
|
-}
|
|
|
-
|
|
|
static int locomo_bus_probe(struct device *dev)
|
|
|
{
|
|
|
struct locomo_dev *ldev = LOCOMO_DEV(dev);
|
|
@@ -875,8 +853,6 @@ struct bus_type locomo_bus_type = {
|
|
|
.match = locomo_match,
|
|
|
.probe = locomo_bus_probe,
|
|
|
.remove = locomo_bus_remove,
|
|
|
- .suspend = locomo_bus_suspend,
|
|
|
- .resume = locomo_bus_resume,
|
|
|
};
|
|
|
|
|
|
int locomo_driver_register(struct locomo_driver *driver)
|