ASoC: dma-sh7760: 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:11 +00:00 committed by Mark Brown
parent 0026c551ba
commit ddfe227c0c
No known key found for this signature in database
GPG Key ID: 24D68B725D5487D0
1 changed files with 12 additions and 14 deletions

View File

@ -1,16 +1,14 @@
/* // SPDX-License-Identifier: GPL-2.0
* SH7760 ("camelot") DMABRG audio DMA unit support //
* // SH7760 ("camelot") DMABRG audio DMA unit support
* Copyright (C) 2007 Manuel Lauss <mano@roarinelk.homelinux.net> //
* licensed under the terms outlined in the file COPYING at the root // Copyright (C) 2007 Manuel Lauss <mano@roarinelk.homelinux.net>
* of the linux kernel sources. //
* // The SH7760 DMABRG provides 4 dma channels (2x rec, 2x play), which
* The SH7760 DMABRG provides 4 dma channels (2x rec, 2x play), which // trigger an interrupt when one half of the programmed transfer size
* trigger an interrupt when one half of the programmed transfer size // has been xmitted.
* has been xmitted. //
* // FIXME: little-endian only for now
* FIXME: little-endian only for now
*/
#include <linux/module.h> #include <linux/module.h>
#include <linux/gfp.h> #include <linux/gfp.h>
@ -341,6 +339,6 @@ static struct platform_driver sh7760_pcm_driver = {
module_platform_driver(sh7760_pcm_driver); module_platform_driver(sh7760_pcm_driver);
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL v2");
MODULE_DESCRIPTION("SH7760 Audio DMA (DMABRG) driver"); MODULE_DESCRIPTION("SH7760 Audio DMA (DMABRG) driver");
MODULE_AUTHOR("Manuel Lauss <mano@roarinelk.homelinux.net>"); MODULE_AUTHOR("Manuel Lauss <mano@roarinelk.homelinux.net>");