diff mbox series

cpufreq: mediatek: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE

Message ID 20171120213201.52606-1-jc@linux.com
State Accepted
Commit 7e8a09e05a0f0ccaf6b2a16f12ed6edc8e62c47d
Headers show
Series cpufreq: mediatek: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE | expand

Commit Message

Jesse Chan Nov. 20, 2017, 9:32 p.m. UTC
This change resolves a new compile-time warning
when built as a loadable module:

WARNING: modpost: missing MODULE_LICENSE() in drivers/cpufreq/mediatek-cpufreq.o
see include/linux/module.h for more information

This adds the license as "GPL v2", which matches the header of the file.

MODULE_DESCRIPTION and MODULE_AUTHOR are also added.

Signed-off-by: Jesse Chan <jc@linux.com>

---
 drivers/cpufreq/mediatek-cpufreq.c | 4 ++++
 1 file changed, 4 insertions(+)

-- 
2.14.1

Comments

Viresh Kumar Nov. 21, 2017, 3:28 a.m. UTC | #1
On 20-11-17, 13:32, Jesse Chan wrote:
> This change resolves a new compile-time warning

> when built as a loadable module:

> 

> WARNING: modpost: missing MODULE_LICENSE() in drivers/cpufreq/mediatek-cpufreq.o

> see include/linux/module.h for more information

> 

> This adds the license as "GPL v2", which matches the header of the file.

> 

> MODULE_DESCRIPTION and MODULE_AUTHOR are also added.

> 

> Signed-off-by: Jesse Chan <jc@linux.com>

> ---

>  drivers/cpufreq/mediatek-cpufreq.c | 4 ++++

>  1 file changed, 4 insertions(+)

> 

> diff --git a/drivers/cpufreq/mediatek-cpufreq.c b/drivers/cpufreq/mediatek-cpufreq.c

> index 18c4bd9a5c65..e0d5090b303d 100644

> --- a/drivers/cpufreq/mediatek-cpufreq.c

> +++ b/drivers/cpufreq/mediatek-cpufreq.c

> @@ -620,3 +620,7 @@ static int __init mtk_cpufreq_driver_init(void)

>  	return 0;

>  }

>  device_initcall(mtk_cpufreq_driver_init);

> +

> +MODULE_DESCRIPTION("MediaTek CPUFreq driver");

> +MODULE_AUTHOR("Pi-Cheng Chen <pi-cheng.chen@linaro.org>");

> +MODULE_LICENSE("GPL v2");


Acked-by: Viresh Kumar <viresh.kumar@linaro.org>


-- 
viresh
diff mbox series

Patch

diff --git a/drivers/cpufreq/mediatek-cpufreq.c b/drivers/cpufreq/mediatek-cpufreq.c
index 18c4bd9a5c65..e0d5090b303d 100644
--- a/drivers/cpufreq/mediatek-cpufreq.c
+++ b/drivers/cpufreq/mediatek-cpufreq.c
@@ -620,3 +620,7 @@  static int __init mtk_cpufreq_driver_init(void)
 	return 0;
 }
 device_initcall(mtk_cpufreq_driver_init);
+
+MODULE_DESCRIPTION("MediaTek CPUFreq driver");
+MODULE_AUTHOR("Pi-Cheng Chen <pi-cheng.chen@linaro.org>");
+MODULE_LICENSE("GPL v2");