diff options
author | Lothar Waßmann <LW@KARO-electronics.de> | 2011-12-09 14:38:11 +0100 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-12-11 10:58:55 +0800 |
commit | 06c8eb9a9115dbbf1658a79f19f18a887c18119b (patch) | |
tree | e15edc26f935ddc1a8649e1e98da7b324a716bad /sound | |
parent | 37d5993c5cc9bc83762ae1b5bd287438022e8afe (diff) | |
download | linux-stable-06c8eb9a9115dbbf1658a79f19f18a887c18119b.tar.gz linux-stable-06c8eb9a9115dbbf1658a79f19f18a887c18119b.tar.bz2 linux-stable-06c8eb9a9115dbbf1658a79f19f18a887c18119b.zip |
ASoC: mxs: Add missing MODULE_LICENSE("GPL")
The sound driver refuses to load as module, because of the missing
MODULE_LICENSE("GPL").
The file header indicates that the driver is indeed published under
the GPL.
Signed-off-by: Lothar Waßmann <LW@KARO-electronics.de>
Acked-by: Wolfram Sang <w.sang@pengutronix.de>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/mxs/mxs-pcm.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/soc/mxs/mxs-pcm.c b/sound/soc/mxs/mxs-pcm.c index dea5aa4aa647..8646913631de 100644 --- a/sound/soc/mxs/mxs-pcm.c +++ b/sound/soc/mxs/mxs-pcm.c @@ -357,3 +357,5 @@ static void __exit snd_mxs_pcm_exit(void) platform_driver_unregister(&mxs_pcm_driver); } module_exit(snd_mxs_pcm_exit); + +MODULE_LICENSE("GPL"); |