From: Eric Piel Date: Wed, 23 May 2007 03:28:03 +0000 (-0400) Subject: Input: input-polldev - add module info X-Git-Tag: v3.12-rc1~28894^2~16 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=36bd52a49b790a71f3d353cdddf2f22e1e6f84ff;p=kernel%2Fkernel-generic.git Input: input-polldev - add module info This is required to load it as a module, as GPL-compatible license is necessary to use workqueues. Signed-off-by: Eric Piel Signed-off-by: Dmitry Torokhov --- diff --git a/drivers/input/misc/input-polldev.c b/drivers/input/misc/input-polldev.c index 1b2b9c9..b773d4c 100644 --- a/drivers/input/misc/input-polldev.c +++ b/drivers/input/misc/input-polldev.c @@ -12,6 +12,11 @@ #include #include +MODULE_AUTHOR("Dmitry Torokhov "); +MODULE_DESCRIPTION("Generic implementation of a polled input device"); +MODULE_LICENSE("GPL v2"); +MODULE_VERSION("0.1"); + static DEFINE_MUTEX(polldev_mutex); static int polldev_users; static struct workqueue_struct *polldev_wq;