]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
perf/arm-cc*: Fix MODULE_LICENSE() tags
authorRobin Murphy <robin.murphy@arm.com>
Mon, 14 May 2018 13:34:51 +0000 (14:34 +0100)
committerWill Deacon <will.deacon@arm.com>
Mon, 21 May 2018 17:12:53 +0000 (18:12 +0100)
The CCI/CCN drivers are licensed under GPLv2, but the MODULE_LICENSE()
tags are using the bare "GPL" string implying GPLv2 or later. Fix them
to match their actual file license.

Acked-by: Pawel Moll <pawel.moll@arm.com>
Acked-by: Suzuki K Poulose <suzuki.poulose@arm.com>
Signed-off-by: Robin Murphy <robin.murphy@arm.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
drivers/perf/arm-cci.c
drivers/perf/arm-ccn.c

index 72c464485470bef3683587349d6269510b806e01..7d916dc2214d9cd526a255ccfa9d0f39984f0b45 100644 (file)
@@ -1709,5 +1709,5 @@ static struct platform_driver cci_pmu_driver = {
 };
 
 builtin_platform_driver(cci_pmu_driver);
-MODULE_LICENSE("GPL");
+MODULE_LICENSE("GPL v2");
 MODULE_DESCRIPTION("ARM CCI PMU support");
index 65b7e4042ece17b1445e4bf6a79b444b809ce0da..917b47e776df2f3cc58b7d5b44026bc3d19d30a8 100644 (file)
@@ -1594,4 +1594,4 @@ module_init(arm_ccn_init);
 module_exit(arm_ccn_exit);
 
 MODULE_AUTHOR("Pawel Moll <pawel.moll@arm.com>");
-MODULE_LICENSE("GPL");
+MODULE_LICENSE("GPL v2");