From: Kuninori Morimoto Date: Fri, 26 Aug 2016 03:07:28 +0000 (+0000) Subject: ASoC: simple-card: is GPL v2 X-Git-Tag: v4.9-rc1~120^2^2~2^3~5 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=a1dbfd001310c429fce9e066730302c82f68bd19;p=karo-tx-linux.git ASoC: simple-card: is GPL v2 It is indicating that this driver is GPL v2 on top of C code. Let's fixup it on MODULE_LICENSE() Signed-off-by: Kuninori Morimoto Signed-off-by: Mark Brown --- diff --git a/sound/soc/generic/simple-card.c b/sound/soc/generic/simple-card.c index 939c82701106..7b0a56f78db0 100644 --- a/sound/soc/generic/simple-card.c +++ b/sound/soc/generic/simple-card.c @@ -498,6 +498,6 @@ static struct platform_driver asoc_simple_card = { module_platform_driver(asoc_simple_card); MODULE_ALIAS("platform:asoc-simple-card"); -MODULE_LICENSE("GPL"); +MODULE_LICENSE("GPL v2"); MODULE_DESCRIPTION("ASoC Simple Sound Card"); MODULE_AUTHOR("Kuninori Morimoto ");