ASoC: mxs: Add missing MODULE_LICENSE("GPL")
authorLothar Waßmann <[email protected]>
Fri, 9 Dec 2011 13:38:11 +0000 (14:38 +0100)
committerMark Brown <[email protected]>
Sun, 11 Dec 2011 02:58:55 +0000 (10:58 +0800)
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 <[email protected]>
Acked-by: Wolfram Sang <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
sound/soc/mxs/mxs-pcm.c

index dea5aa4aa6473a03231ff22e416bb61684c80046..8646913631decfa94e578a0343eb17d55667fb5e 100644 (file)
@@ -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");