summaryrefslogtreecommitdiff
path: root/drivers/staging/ccree/ssi_driver.c
diff options
context:
space:
mode:
authorGilad Ben-Yossef <gilad@benyossef.com>2017-12-14 17:02:39 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-12-19 17:15:53 +0300
commit4ba5895bd3724106cdfc9a5d2e63ba381731fea0 (patch)
tree0ccbbc1b0ff9a5fb3c1e8142c4598d0028ba4a73 /drivers/staging/ccree/ssi_driver.c
parent16bcccb7744849da85b8807046a0488e42698f45 (diff)
downloadlinux-4ba5895bd3724106cdfc9a5d2e63ba381731fea0.tar.xz
staging: ccree: clean up PM registration
Clean up power management registration. Signed-off-by: Gilad Ben-Yossef <gilad@benyossef.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/ccree/ssi_driver.c')
-rw-r--r--drivers/staging/ccree/ssi_driver.c16
1 files changed, 3 insertions, 13 deletions
diff --git a/drivers/staging/ccree/ssi_driver.c b/drivers/staging/ccree/ssi_driver.c
index fbf033856317..ad02d9214fbe 100644
--- a/drivers/staging/ccree/ssi_driver.c
+++ b/drivers/staging/ccree/ssi_driver.c
@@ -500,18 +500,6 @@ static int cc7x_remove(struct platform_device *plat_dev)
return 0;
}
-#if defined(CONFIG_PM)
-static const struct dev_pm_ops arm_cc7x_driver_pm = {
- SET_RUNTIME_PM_OPS(cc_pm_suspend, cc_pm_resume, NULL)
-};
-#endif
-
-#if defined(CONFIG_PM)
-#define CC_DRIVER_RUNTIME_PM (&arm_cc7x_driver_pm)
-#else
-#define CC_DRIVER_RUNTIME_PM NULL
-#endif
-
static const struct of_device_id arm_cc7x_dev_of_match[] = {
{.compatible = "arm,cryptocell-712-ree"},
{}
@@ -522,7 +510,9 @@ static struct platform_driver cc7x_driver = {
.driver = {
.name = "cc7xree",
.of_match_table = arm_cc7x_dev_of_match,
- .pm = CC_DRIVER_RUNTIME_PM,
+#ifdef CONFIG_PM
+ .pm = &ccree_pm,
+#endif
},
.probe = cc7x_probe,
.remove = cc7x_remove,