提交 a278e268 编写于 作者: G Geert Uytterhoeven 提交者: Jiri Kosina

HID: rmi: Protect PM-only functions by #ifdef CONFIG_PM

If CONFIG_PM=n:

drivers/hid/hid-rmi.c:432: warning: ‘rmi_post_reset’ defined but not used
drivers/hid/hid-rmi.c:437: warning: ‘rmi_post_resume’ defined but not used
Signed-off-by: NGeert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: NJiri Kosina <jkosina@suse.cz>
上级 4732aee9
...@@ -428,6 +428,7 @@ static int rmi_raw_event(struct hid_device *hdev, ...@@ -428,6 +428,7 @@ static int rmi_raw_event(struct hid_device *hdev,
return 0; return 0;
} }
#ifdef CONFIG_PM
static int rmi_post_reset(struct hid_device *hdev) static int rmi_post_reset(struct hid_device *hdev)
{ {
return rmi_set_mode(hdev, RMI_MODE_ATTN_REPORTS); return rmi_set_mode(hdev, RMI_MODE_ATTN_REPORTS);
...@@ -437,6 +438,7 @@ static int rmi_post_resume(struct hid_device *hdev) ...@@ -437,6 +438,7 @@ static int rmi_post_resume(struct hid_device *hdev)
{ {
return rmi_set_mode(hdev, RMI_MODE_ATTN_REPORTS); return rmi_set_mode(hdev, RMI_MODE_ATTN_REPORTS);
} }
#endif /* CONFIG_PM */
#define RMI4_MAX_PAGE 0xff #define RMI4_MAX_PAGE 0xff
#define RMI4_PAGE_SIZE 0x0100 #define RMI4_PAGE_SIZE 0x0100
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册