diff options
author | Hans de Goede <hdegoede@redhat.com> | 2021-05-05 23:39:30 +0200 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2021-05-27 15:40:34 +0200 |
commit | e62b91cd8a8d4a18955802b852cac86cd72f79b1 (patch) | |
tree | 1c281ff6b9171effe9472ed8dd1b1d3af4a48e64 /drivers/hid | |
parent | 3202f482417cefc0f8fad5aaba6eea00f68141a0 (diff) | |
download | linux-e62b91cd8a8d4a18955802b852cac86cd72f79b1.tar.bz2 |
HID: core: Remove extraneous empty line before EXPORT_SYMBOL_GPL(hid_check_keys_pressed)
Normally the EXPORT_SYMBOL of a function immediately follows the
declaration of the function and all the other functions in hid-core.c
follow this pattern, drop the extraneous empty line before the
EXPORT_SYMBOL_GPL(hid_check_keys_pressed); line.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid')
-rw-r--r-- | drivers/hid/hid-core.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c index 265cbe592374..0de2788b9814 100644 --- a/drivers/hid/hid-core.c +++ b/drivers/hid/hid-core.c @@ -2591,7 +2591,6 @@ int hid_check_keys_pressed(struct hid_device *hid) return 0; } - EXPORT_SYMBOL_GPL(hid_check_keys_pressed); static int __init hid_init(void) |