aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2018-07-06 14:57:19 +0200
committerAndy Gross <andy.gross@linaro.org>2018-11-14 09:56:36 -0800
commit8c1919a2b48f172bfb4db5aa93d5809dd26738b3 (patch)
tree61f7ba1f59e94ab5434c7f7ba0c820a8b27dfe53
parentsoc: qcom: Add irq clear handling during SE init (diff)
downloadlinux-dev-8c1919a2b48f172bfb4db5aa93d5809dd26738b3.tar.xz
linux-dev-8c1919a2b48f172bfb4db5aa93d5809dd26738b3.zip
soc: qcom/llcc: add MODULE_LICENSE tag
The lack of a MODULE_LICENSE tag prevents building the llcc driver as a loadable module: FATAL: modpost: GPL-incompatible module llcc-slice.ko uses GPL-only symbol 'ktime_get' This adds the appropriate license and description tags. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Andy Gross <andy.gross@linaro.org>
-rw-r--r--drivers/soc/qcom/llcc-slice.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/soc/qcom/llcc-slice.c b/drivers/soc/qcom/llcc-slice.c
index 192ca761b2cb..7f55203d28d7 100644
--- a/drivers/soc/qcom/llcc-slice.c
+++ b/drivers/soc/qcom/llcc-slice.c
@@ -16,6 +16,7 @@
#include <linux/sizes.h>
#include <linux/slab.h>
#include <linux/soc/qcom/llcc-qcom.h>
+#include <linux/module.h>
#define ACTIVATE BIT(0)
#define DEACTIVATE BIT(1)
@@ -360,5 +361,5 @@ int qcom_llcc_probe(struct platform_device *pdev,
return ret;
}
EXPORT_SYMBOL_GPL(qcom_llcc_probe);
-
MODULE_LICENSE("GPL v2");
+MODULE_DESCRIPTION("Qualcomm Last Level Cache Controller");