ASoC: sh7760-ac97: convert to SPDX identifiers

Tidyup incoherence between MODULE_LICENSE and header license, too

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Kuninori Morimoto 2018-06-12 05:59:27 +00:00 committed by Mark Brown
parent ddfe227c0c
commit 04433977b1
No known key found for this signature in database
GPG Key ID: 24D68B725D5487D0

View File

@ -1,10 +1,8 @@
/* // SPDX-License-Identifier: GPL-2.0
* Generic AC97 sound support for SH7760 //
* // Generic AC97 sound support for SH7760
* (c) 2007 Manuel Lauss //
* // (c) 2007 Manuel Lauss
* Licensed under the GPLv2.
*/
#include <linux/module.h> #include <linux/module.h>
#include <linux/moduleparam.h> #include <linux/moduleparam.h>
@ -68,6 +66,6 @@ static void __exit sh7760_ac97_exit(void)
module_init(sh7760_ac97_init); module_init(sh7760_ac97_init);
module_exit(sh7760_ac97_exit); module_exit(sh7760_ac97_exit);
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL v2");
MODULE_DESCRIPTION("Generic SH7760 AC97 sound machine"); MODULE_DESCRIPTION("Generic SH7760 AC97 sound machine");
MODULE_AUTHOR("Manuel Lauss <mano@roarinelk.homelinux.net>"); MODULE_AUTHOR("Manuel Lauss <mano@roarinelk.homelinux.net>");