diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2019-03-05 06:15:25 -0500 |
---|---|---|
committer | Benjamin Tissoires <benjamin.tissoires@redhat.com> | 2019-03-11 09:41:37 -0400 |
commit | 78b92f5f00cb3dbca0553f50847232eef60ccff4 (patch) | |
tree | 0629626a0feb27e3fd950a8ebb1b4ce556437e93 | |
parent | a23eab893476f67bd7572cdbf24498d647c86e48 (diff) |
HID: quirks: Drop misused kernel-doc annotation
The kernel-doc annotation is misused for hid_mouse_ignore_list. The script
complains about it:
drivers/hid/hid-quirks.c:894: warning: cannot understand function prototype: 'const struct hid_device_id hid_mouse_ignore_list[] = '
Drop the annotation to make script happy.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
-rw-r--r-- | drivers/hid/hid-quirks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/hid-quirks.c b/drivers/hid/hid-quirks.c index 2f9a9bf55208..1148d8c0816a 100644 --- a/drivers/hid/hid-quirks.c +++ b/drivers/hid/hid-quirks.c | |||
@@ -855,7 +855,7 @@ static const struct hid_device_id hid_ignore_list[] = { | |||
855 | { } | 855 | { } |
856 | }; | 856 | }; |
857 | 857 | ||
858 | /** | 858 | /* |
859 | * hid_mouse_ignore_list - mouse devices which should not be handled by the hid layer | 859 | * hid_mouse_ignore_list - mouse devices which should not be handled by the hid layer |
860 | * | 860 | * |
861 | * There are composite devices for which we want to ignore only a certain | 861 | * There are composite devices for which we want to ignore only a certain |