From: Axel Lin Date: Mon, 12 Dec 2011 08:01:15 +0000 (+0800) Subject: ASoC: Add missed MODULE_LICENSE("GPL") for imx-pcm-fiq X-Git-Tag: firefly_0821_release~3680^2~2691^2~262 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=0604ca48f1689ad06144b81f5c08f297b6edd831;p=firefly-linux-kernel-4.4.55.git ASoC: Add missed MODULE_LICENSE("GPL") for imx-pcm-fiq This driver can be built as module and the file header indicates that the driver is published under the GPL. Thus add MODULE_LICENSE("GPL") for it. Signed-off-by: Axel Lin Acked-by: Sascha Hauer Signed-off-by: Mark Brown --- diff --git a/sound/soc/imx/imx-pcm-fiq.c b/sound/soc/imx/imx-pcm-fiq.c index d7ea0b354124..456b7d723d66 100644 --- a/sound/soc/imx/imx-pcm-fiq.c +++ b/sound/soc/imx/imx-pcm-fiq.c @@ -332,3 +332,5 @@ static struct platform_driver imx_pcm_driver = { }; module_platform_driver(imx_pcm_driver); + +MODULE_LICENSE("GPL");