From: Geert Uytterhoeven Date: Mon, 11 Aug 2014 18:03:19 +0000 (-0700) Subject: Input: wacom - fix compiler warning if !CONFIG_PM X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=41a7458147a435e082ceccd3a7d46f3390ea90f3;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git Input: wacom - fix compiler warning if !CONFIG_PM If CONFIG_PM is not set: drivers/hid/wacom_sys.c:1436: warning: ‘wacom_reset_resume’ defined but not used Protect the unused functions by #ifdef CONFIG_PM to fix this. Signed-off-by: Geert Uytterhoeven Reviewed-by: Benjamin Tissoires Signed-off-by: Dmitry Torokhov --- diff --git a/drivers/hid/wacom_sys.c b/drivers/hid/wacom_sys.c index 3e388ec31da8..f0db7eca9023 100644 --- a/drivers/hid/wacom_sys.c +++ b/drivers/hid/wacom_sys.c @@ -1416,6 +1416,7 @@ static void wacom_remove(struct hid_device *hdev) kfree(wacom); } +#ifdef CONFIG_PM static int wacom_resume(struct hid_device *hdev) { struct wacom *wacom = hid_get_drvdata(hdev); @@ -1436,6 +1437,7 @@ static int wacom_reset_resume(struct hid_device *hdev) { return wacom_resume(hdev); } +#endif /* CONFIG_PM */ static struct hid_driver wacom_driver = { .name = "wacom",