diff options
author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2011-10-06 18:26:52 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2011-10-06 22:43:09 -0400 |
commit | f80aee7fd095d9014a92a250c688ff5dbc0a6649 (patch) | |
tree | 49afde0d7f8a359e7197bb49752ac716670732d5 /drivers/input/keyboard | |
parent | d4f4158dcda2f75ba8024e540d0bba070af1e67a (diff) |
Input: lm8323 - wrap suspend and resume in CONFIG_PM_SLEEP
CONFIG_PM is defined when CONFIG_PM_SLEEP or CONFIG_PM_RUNTIME is defined,
however suspend and resume methods are only valid in the context of
CONFIG_PM_SLEEP. If only CONFIG_PM_RUNTIME is defined we get the following
warning (courtesy of Geerts randconfig builds):
lm8323.c: warning: 'lm8323_resume' defined but not used
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/keyboard')
-rw-r--r-- | drivers/input/keyboard/lm8323.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/keyboard/lm8323.c b/drivers/input/keyboard/lm8323.c index 756348a7f93a..82d1dc8badd5 100644 --- a/drivers/input/keyboard/lm8323.c +++ b/drivers/input/keyboard/lm8323.c | |||
@@ -788,7 +788,7 @@ static int __devexit lm8323_remove(struct i2c_client *client) | |||
788 | return 0; | 788 | return 0; |
789 | } | 789 | } |
790 | 790 | ||
791 | #ifdef CONFIG_PM | 791 | #ifdef CONFIG_PM_SLEEP |
792 | /* | 792 | /* |
793 | * We don't need to explicitly suspend the chip, as it already switches off | 793 | * We don't need to explicitly suspend the chip, as it already switches off |
794 | * when there's no activity. | 794 | * when there's no activity. |