diff options
| author | Rakib Mullick <rakib.mullick@gmail.com> | 2009-12-30 02:19:31 -0500 |
|---|---|---|
| committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2009-12-30 02:20:16 -0500 |
| commit | e97006ae1c87f9630b6f5c4d4384921059d881a8 (patch) | |
| tree | cd46b8c45d5e9c455b77b5100ae12f81e6776e94 | |
| parent | c6bde2d9cb75a41cd2b331953784843b4caa89df (diff) | |
Input: wistron - fix test for CONFIG_PM
This should fix the following compile warning:
drivers/input/misc/wistron_btns.c:1331:5: warning: "CONFIG_PM" is not defined
Signed-off-by: Rakib Mullick <rakib.mullick@gmail.com>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
| -rw-r--r-- | drivers/input/misc/wistron_btns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/misc/wistron_btns.c b/drivers/input/misc/wistron_btns.c index 38da6ab04384..c0afb71a3a6d 100644 --- a/drivers/input/misc/wistron_btns.c +++ b/drivers/input/misc/wistron_btns.c | |||
| @@ -1328,7 +1328,7 @@ static struct platform_driver wistron_driver = { | |||
| 1328 | .driver = { | 1328 | .driver = { |
| 1329 | .name = "wistron-bios", | 1329 | .name = "wistron-bios", |
| 1330 | .owner = THIS_MODULE, | 1330 | .owner = THIS_MODULE, |
| 1331 | #if CONFIG_PM | 1331 | #ifdef CONFIG_PM |
| 1332 | .pm = &wistron_pm_ops, | 1332 | .pm = &wistron_pm_ops, |
| 1333 | #endif | 1333 | #endif |
| 1334 | }, | 1334 | }, |
