Commit 1e0edd4d authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Mark Brown

ASoC: rsnd: convert to SPDX identifiers

Tidyup incoherence between MODULE_LICENSE and header license, too
Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 4e6fdaf1
# SPDX-License-Identifier: GPL-2.0
snd-soc-rcar-objs := core.o gen.o dma.o adg.o ssi.o ssiu.o src.o ctu.o mix.o dvc.o cmd.o snd-soc-rcar-objs := core.o gen.o dma.o adg.o ssi.o ssiu.o src.o ctu.o mix.o dvc.o cmd.o
obj-$(CONFIG_SND_SOC_RCAR) += snd-soc-rcar.o obj-$(CONFIG_SND_SOC_RCAR) += snd-soc-rcar.o
/* // SPDX-License-Identifier: GPL-2.0
* Helper routines for R-Car sound ADG. //
* // Helper routines for R-Car sound ADG.
* Copyright (C) 2013 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> //
* // Copyright (C) 2013 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file "COPYING" in the main directory of this archive
* for more details.
*/
#include <linux/clk-provider.h> #include <linux/clk-provider.h>
#include "rsnd.h" #include "rsnd.h"
......
/* // SPDX-License-Identifier: GPL-2.0
* Renesas R-Car CMD support //
* // Renesas R-Car CMD support
* Copyright (C) 2015 Renesas Solutions Corp. //
* Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> // Copyright (C) 2015 Renesas Solutions Corp.
* // Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#include "rsnd.h" #include "rsnd.h"
struct rsnd_cmd { struct rsnd_cmd {
......
/* // SPDX-License-Identifier: GPL-2.0
* Renesas R-Car SRU/SCU/SSIU/SSI support //
* // Renesas R-Car SRU/SCU/SSIU/SSI support
* Copyright (C) 2013 Renesas Solutions Corp. //
* Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> // Copyright (C) 2013 Renesas Solutions Corp.
* // Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
* Based on fsi.c //
* Kuninori Morimoto <morimoto.kuninori@renesas.com> // Based on fsi.c
* // Kuninori Morimoto <morimoto.kuninori@renesas.com>
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
/* /*
* Renesas R-Car sound device structure * Renesas R-Car sound device structure
...@@ -1606,7 +1602,7 @@ static struct platform_driver rsnd_driver = { ...@@ -1606,7 +1602,7 @@ static struct platform_driver rsnd_driver = {
}; };
module_platform_driver(rsnd_driver); module_platform_driver(rsnd_driver);
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL v2");
MODULE_DESCRIPTION("Renesas R-Car audio driver"); MODULE_DESCRIPTION("Renesas R-Car audio driver");
MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>"); MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>");
MODULE_ALIAS("platform:rcar-pcm-audio"); MODULE_ALIAS("platform:rcar-pcm-audio");
/* // SPDX-License-Identifier: GPL-2.0
* ctu.c //
* // ctu.c
* Copyright (c) 2015 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> //
* // Copyright (c) 2015 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#include "rsnd.h" #include "rsnd.h"
#define CTU_NAME_SIZE 16 #define CTU_NAME_SIZE 16
......
/* // SPDX-License-Identifier: GPL-2.0
* Renesas R-Car Audio DMAC support //
* // Renesas R-Car Audio DMAC support
* Copyright (C) 2015 Renesas Electronics Corp. //
* Copyright (c) 2015 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> // Copyright (C) 2015 Renesas Electronics Corp.
* // Copyright (c) 2015 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#include <linux/delay.h> #include <linux/delay.h>
#include <linux/of_dma.h> #include <linux/of_dma.h>
#include "rsnd.h" #include "rsnd.h"
......
/* // SPDX-License-Identifier: GPL-2.0
* Renesas R-Car DVC support //
* // Renesas R-Car DVC support
* Copyright (C) 2014 Renesas Solutions Corp. //
* Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> // Copyright (C) 2014 Renesas Solutions Corp.
* // Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
/* /*
* Playback Volume * Playback Volume
......
/* // SPDX-License-Identifier: GPL-2.0
* Renesas R-Car Gen1 SRU/SSI support //
* // Renesas R-Car Gen1 SRU/SSI support
* Copyright (C) 2013 Renesas Solutions Corp. //
* Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> // Copyright (C) 2013 Renesas Solutions Corp.
* // Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
/* /*
* #define DEBUG * #define DEBUG
......
/* // SPDX-License-Identifier: GPL-2.0
* mix.c //
* // mix.c
* Copyright (c) 2015 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> //
* // Copyright (c) 2015 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
/* /*
* CTUn MIXn * CTUn MIXn
......
/* // SPDX-License-Identifier: GPL-2.0
* Renesas R-Car //
* // Renesas R-Car
* Copyright (C) 2013 Renesas Solutions Corp. //
* Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> // Copyright (C) 2013 Renesas Solutions Corp.
* // Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#ifndef RSND_H #ifndef RSND_H
#define RSND_H #define RSND_H
......
/* // SPDX-License-Identifier: GPL-2.0
* Renesas R-Car SRC support //
* // Renesas R-Car SRC support
* Copyright (C) 2013 Renesas Solutions Corp. //
* Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> // Copyright (C) 2013 Renesas Solutions Corp.
* // Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
/* /*
* you can enable below define if you don't need * you can enable below define if you don't need
......
/* // SPDX-License-Identifier: GPL-2.0
* Renesas R-Car SSIU/SSI support //
* // Renesas R-Car SSIU/SSI support
* Copyright (C) 2013 Renesas Solutions Corp. //
* Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> // Copyright (C) 2013 Renesas Solutions Corp.
* // Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
* Based on fsi.c //
* Kuninori Morimoto <morimoto.kuninori@renesas.com> // Based on fsi.c
* // Kuninori Morimoto <morimoto.kuninori@renesas.com>
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
/* /*
* you can enable below define if you don't need * you can enable below define if you don't need
......
/* // SPDX-License-Identifier: GPL-2.0
* Renesas R-Car SSIU support //
* // Renesas R-Car SSIU support
* Copyright (c) 2015 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> //
* // Copyright (c) 2015 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#include "rsnd.h" #include "rsnd.h"
#define SSIU_NAME "ssiu" #define SSIU_NAME "ssiu"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment