diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2017-07-02 23:05:29 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2017-11-27 16:20:02 -0500 |
commit | 0d9b87f3ba71eef698ea69ef111b8ba35af8b318 (patch) | |
tree | 4a48ab447a1f6e6516b38af9b998be04f7cbe6c4 | |
parent | 38544bfff2f215030935189873f87a400bb0bf03 (diff) |
acpi: annotate ->poll() instances
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
-rw-r--r-- | drivers/acpi/acpi_dbg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/acpi/acpi_dbg.c b/drivers/acpi/acpi_dbg.c index 3ec05aa1a903..2ff5c8c04e3b 100644 --- a/drivers/acpi/acpi_dbg.c +++ b/drivers/acpi/acpi_dbg.c | |||
@@ -718,9 +718,9 @@ again: | |||
718 | return size > 0 ? size : ret; | 718 | return size > 0 ? size : ret; |
719 | } | 719 | } |
720 | 720 | ||
721 | static unsigned int acpi_aml_poll(struct file *file, poll_table *wait) | 721 | static __poll_t acpi_aml_poll(struct file *file, poll_table *wait) |
722 | { | 722 | { |
723 | int masks = 0; | 723 | __poll_t masks = 0; |
724 | 724 | ||
725 | poll_wait(file, &acpi_aml_io.wait, wait); | 725 | poll_wait(file, &acpi_aml_io.wait, wait); |
726 | if (acpi_aml_user_readable()) | 726 | if (acpi_aml_user_readable()) |