projects
/
platform
/
kernel
/
linux-exynos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
37bff2c
)
clk: qcom: Give clk-qcom.ko module a GPLv2 license
author
Stephen Boyd
<sboyd@codeaurora.org>
Fri, 24 Jul 2015 18:55:42 +0000
(11:55 -0700)
committer
Stephen Boyd
<sboyd@codeaurora.org>
Tue, 28 Jul 2015 18:59:26 +0000
(11:59 -0700)
The missing license causes the clk-qcom.ko module to taint the
kernel. Add the appropriate license to avoid taint.
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
drivers/clk/qcom/common.c
patch
|
blob
|
history
diff --git
a/drivers/clk/qcom/common.c
b/drivers/clk/qcom/common.c
index
f7101e3
..
34e60c5
100644
(file)
--- a/
drivers/clk/qcom/common.c
+++ b/
drivers/clk/qcom/common.c
@@
-12,6
+12,7
@@
*/
#include <linux/export.h>
+#include <linux/module.h>
#include <linux/regmap.h>
#include <linux/platform_device.h>
#include <linux/clk-provider.h>
@@
-144,3
+145,5
@@
void qcom_cc_remove(struct platform_device *pdev)
reset_controller_unregister(platform_get_drvdata(pdev));
}
EXPORT_SYMBOL_GPL(qcom_cc_remove);
+
+MODULE_LICENSE("GPL v2");