diff options
| author | Axel Lin <axel.lin@ingics.com> | 2012-10-01 20:16:53 -0400 |
|---|---|---|
| committer | MyungJoo Ham <myungjoo.ham@samsung.com> | 2012-10-23 03:32:14 -0400 |
| commit | d9310e35a8d5aefad73b2f2387503082da0bea04 (patch) | |
| tree | 1731dba824e6ad6fa645581f6ec00271df1e1dde /drivers/extcon | |
| parent | 03019759b98de92b5507c8c2f6e253a35d59c868 (diff) | |
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.c | 5 |
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 @@ | |||
| 14 | * | 14 | * |
| 15 | */ | 15 | */ |
| 16 | 16 | ||
| 17 | #include <linux/module.h> | ||
| 17 | #include <linux/slab.h> | 18 | #include <linux/slab.h> |
| 18 | #include <linux/device.h> | 19 | #include <linux/device.h> |
| 19 | #include <linux/platform_device.h> | 20 | #include <linux/platform_device.h> |
| @@ -195,3 +196,7 @@ static struct platform_driver adc_jack_driver = { | |||
| 195 | }; | 196 | }; |
| 196 | 197 | ||
| 197 | module_platform_driver(adc_jack_driver); | 198 | module_platform_driver(adc_jack_driver); |
| 199 | |||
| 200 | MODULE_AUTHOR("MyungJoo Ham <myungjoo.ham@samsung.com>"); | ||
| 201 | MODULE_DESCRIPTION("ADC Jack extcon driver"); | ||
| 202 | MODULE_LICENSE("GPL v2"); | ||
