Commit d9310e35a8d5aefad73b2f2387503082da0bea04

Authored by Axel Lin
Committed by MyungJoo Ham
1 parent 03019759b9

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>

Showing 1 changed file with 5 additions and 0 deletions Side-by-side Diff

drivers/extcon/extcon-adc-jack.c
... ... @@ -14,6 +14,7 @@
14 14 *
15 15 */
16 16  
  17 +#include <linux/module.h>
17 18 #include <linux/slab.h>
18 19 #include <linux/device.h>
19 20 #include <linux/platform_device.h>
... ... @@ -195,4 +196,8 @@
195 196 };
196 197  
197 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");