summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorViresh Kumar2012-02-24 09:51:37 +0100
committerDmitry Torokhov2012-02-28 10:18:32 +0100
commitf79e30a809d829d094c0e33d3279c43aca71472f (patch)
treeaec43fe4510419716ff8631f8779240227f3a8ec
parentInput: spear-keyboard - configure device according to supplied mode (diff)
downloadkernel-qcow2-linux-f79e30a809d829d094c0e33d3279c43aca71472f.tar.gz
kernel-qcow2-linux-f79e30a809d829d094c0e33d3279c43aca71472f.tar.xz
kernel-qcow2-linux-f79e30a809d829d094c0e33d3279c43aca71472f.zip
Input: spear-keyboard - provide thaw and poweroff routines
Thaw and poweroff routines are missing for spear-keyboard. They are required for: - Error case scenarios during freeze - Using test features, of hibernate. Signed-off-by: Viresh Kumar <viresh.kumar@st.com> Signed-off-by: Rajeev Kumar <rajeev-dlh.kumar@st.com> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
-rw-r--r--drivers/input/keyboard/spear-keyboard.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/drivers/input/keyboard/spear-keyboard.c b/drivers/input/keyboard/spear-keyboard.c
index 933fb019b967..3b6b528f02fd 100644
--- a/drivers/input/keyboard/spear-keyboard.c
+++ b/drivers/input/keyboard/spear-keyboard.c
@@ -313,22 +313,17 @@ static int spear_kbd_resume(struct device *dev)
return 0;
}
-
-static const struct dev_pm_ops spear_kbd_pm_ops = {
- .suspend = spear_kbd_suspend,
- .resume = spear_kbd_resume,
-};
#endif
+static SIMPLE_DEV_PM_OPS(spear_kbd_pm_ops, spear_kbd_suspend, spear_kbd_resume);
+
static struct platform_driver spear_kbd_driver = {
.probe = spear_kbd_probe,
.remove = __devexit_p(spear_kbd_remove),
.driver = {
.name = "keyboard",
.owner = THIS_MODULE,
-#ifdef CONFIG_PM
.pm = &spear_kbd_pm_ops,
-#endif
},
};
module_platform_driver(spear_kbd_driver);