|
@@ -582,15 +582,12 @@ static void sh_dmae_chan_remove(struct sh_dmae_device *shdev)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-static void sh_dmae_shutdown(struct platform_device *pdev)
|
|
|
|
-{
|
|
|
|
- struct sh_dmae_device *shdev = platform_get_drvdata(pdev);
|
|
|
|
- sh_dmae_ctl_stop(shdev);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
#ifdef CONFIG_PM
|
|
#ifdef CONFIG_PM
|
|
static int sh_dmae_runtime_suspend(struct device *dev)
|
|
static int sh_dmae_runtime_suspend(struct device *dev)
|
|
{
|
|
{
|
|
|
|
+ struct sh_dmae_device *shdev = dev_get_drvdata(dev);
|
|
|
|
+
|
|
|
|
+ sh_dmae_ctl_stop(shdev);
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -605,6 +602,9 @@ static int sh_dmae_runtime_resume(struct device *dev)
|
|
#ifdef CONFIG_PM_SLEEP
|
|
#ifdef CONFIG_PM_SLEEP
|
|
static int sh_dmae_suspend(struct device *dev)
|
|
static int sh_dmae_suspend(struct device *dev)
|
|
{
|
|
{
|
|
|
|
+ struct sh_dmae_device *shdev = dev_get_drvdata(dev);
|
|
|
|
+
|
|
|
|
+ sh_dmae_ctl_stop(shdev);
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -929,13 +929,12 @@ static int sh_dmae_remove(struct platform_device *pdev)
|
|
}
|
|
}
|
|
|
|
|
|
static struct platform_driver sh_dmae_driver = {
|
|
static struct platform_driver sh_dmae_driver = {
|
|
- .driver = {
|
|
|
|
|
|
+ .driver = {
|
|
.pm = &sh_dmae_pm,
|
|
.pm = &sh_dmae_pm,
|
|
.name = SH_DMAE_DRV_NAME,
|
|
.name = SH_DMAE_DRV_NAME,
|
|
.of_match_table = sh_dmae_of_match,
|
|
.of_match_table = sh_dmae_of_match,
|
|
},
|
|
},
|
|
.remove = sh_dmae_remove,
|
|
.remove = sh_dmae_remove,
|
|
- .shutdown = sh_dmae_shutdown,
|
|
|
|
};
|
|
};
|
|
|
|
|
|
static int __init sh_dmae_init(void)
|
|
static int __init sh_dmae_init(void)
|