diff options
author | Arnd Bergmann <arnd@arndb.de> | 2018-01-10 11:29:23 -0800 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2018-01-10 16:38:12 -0800 |
commit | 43173a0ecc0c0f1a652847d84c1ef46ada73a974 (patch) | |
tree | f9e4ecc96e7ec9b57a70ac2ac6f6c1f8c8b2433f /drivers/input/touchscreen | |
parent | 906bf7daa0618d0ef39f4872ca42218c29a3631f (diff) | |
download | linux-stable-43173a0ecc0c0f1a652847d84c1ef46ada73a974.tar.gz linux-stable-43173a0ecc0c0f1a652847d84c1ef46ada73a974.tar.bz2 linux-stable-43173a0ecc0c0f1a652847d84c1ef46ada73a974.zip |
Input: of_touchscreen - add MODULE_LICENSE
The lack of the MODULE_LICENSE tag can lead to a warning here:
WARNING: modpost: missing MODULE_LICENSE() in drivers/input/touchscreen/of_touchscreen.o
I'm adding a license and description tag, but no MODULE_AUTHOR()
as this file is a collection of standalone helper functions that
were all added by different developers.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input/touchscreen')
-rw-r--r-- | drivers/input/touchscreen/of_touchscreen.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/input/touchscreen/of_touchscreen.c b/drivers/input/touchscreen/of_touchscreen.c index 8d7f9c8f2771..9642f103b726 100644 --- a/drivers/input/touchscreen/of_touchscreen.c +++ b/drivers/input/touchscreen/of_touchscreen.c @@ -13,6 +13,7 @@ #include <linux/input.h> #include <linux/input/mt.h> #include <linux/input/touchscreen.h> +#include <linux/module.h> static bool touchscreen_get_prop_u32(struct device *dev, const char *property, @@ -185,3 +186,6 @@ void touchscreen_report_pos(struct input_dev *input, input_report_abs(input, multitouch ? ABS_MT_POSITION_Y : ABS_Y, y); } EXPORT_SYMBOL(touchscreen_report_pos); + +MODULE_LICENSE("GPL v2"); +MODULE_DESCRIPTION("Device-tree helpers functions for touchscreen devices"); |