Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8c1919a2 authored by Arnd Bergmann's avatar Arnd Bergmann Committed by Andy Gross
Browse files

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: default avatarArnd Bergmann <arnd@arndb.de>
Signed-off-by: default avatarAndy Gross <andy.gross@linaro.org>
parent 279536a5
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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");