summaryrefslogtreecommitdiffstats
path: root/drivers/extcon
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@ingics.com>2012-10-02 09:16:53 +0900
committerMyungJoo Ham <myungjoo.ham@samsung.com>2012-10-23 16:32:14 +0900
commitd9310e35a8d5aefad73b2f2387503082da0bea04 (patch)
tree1731dba824e6ad6fa645581f6ec00271df1e1dde /drivers/extcon
parent03019759b98de92b5507c8c2f6e253a35d59c868 (diff)
downloadlinux-d9310e35a8d5aefad73b2f2387503082da0bea04.tar.gz
linux-d9310e35a8d5aefad73b2f2387503082da0bea04.tar.xz
extcon: adc-jack: Add missing MODULE_LICENSE
This driver can be built as a module, add MODULE_LICENSE for it. For completeness, also adds MODULE_AUTHOR and MODULE_DESCRIPTION. Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Diffstat (limited to 'drivers/extcon')
-rw-r--r--drivers/extcon/extcon-adc-jack.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/extcon/extcon-adc-jack.c b/drivers/extcon/extcon-adc-jack.c
index 2cc6bec9f625..e87196f6d2d2 100644
--- a/drivers/extcon/extcon-adc-jack.c
+++ b/drivers/extcon/extcon-adc-jack.c
@@ -14,6 +14,7 @@
*
*/
+#include <linux/module.h>
#include <linux/slab.h>
#include <linux/device.h>
#include <linux/platform_device.h>
@@ -195,3 +196,7 @@ static struct platform_driver adc_jack_driver = {
};
module_platform_driver(adc_jack_driver);
+
+MODULE_AUTHOR("MyungJoo Ham <myungjoo.ham@samsung.com>");
+MODULE_DESCRIPTION("ADC Jack extcon driver");
+MODULE_LICENSE("GPL v2");