diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-01-17 03:44:55 +0300 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2018-01-17 03:48:25 +0300 |
commit | 77ecf14e9e878eb87ecb5449711ca979712798be (patch) | |
tree | 7f5eea630d89918b891f0afbb3a3c51f495cc90f /drivers/input/sparse-keymap.c | |
parent | 141fc3fcfde3ea2b2ec71c037e8d11c1cdea1676 (diff) | |
download | linux-77ecf14e9e878eb87ecb5449711ca979712798be.tar.xz |
Input: remove remaining unneeded MODULE_VERSION() usage
MODULE_VERSION is useless for in-kernel drivers, so just remove all
usage of it in the remaining few input drivers that still used it
(input-polldev and sparse-keymap).
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input/sparse-keymap.c')
-rw-r--r-- | drivers/input/sparse-keymap.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/input/sparse-keymap.c b/drivers/input/sparse-keymap.c index fd03e55768c9..0cad5e7c559b 100644 --- a/drivers/input/sparse-keymap.c +++ b/drivers/input/sparse-keymap.c @@ -21,7 +21,6 @@ MODULE_AUTHOR("Dmitry Torokhov <dtor@mail.ru>"); MODULE_DESCRIPTION("Generic support for sparse keymaps"); MODULE_LICENSE("GPL v2"); -MODULE_VERSION("0.1"); static unsigned int sparse_keymap_get_key_index(struct input_dev *dev, const struct key_entry *k) |