diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2021-05-31 07:19:13 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-06-01 16:04:14 +0300 |
commit | 039f2ccc64b8a2649f54d654a4d7d92864c6fdb1 (patch) | |
tree | 94d99ff908affa39bc5693bc10ecca863ced2f8d /sound/soc/sh/rcar/ssi.c | |
parent | ec02b5a1d1c91b1e05b62f8092252137cf9be488 (diff) | |
download | linux-039f2ccc64b8a2649f54d654a4d7d92864c6fdb1.tar.xz |
ASoC: rsnd: tidyup rsnd_dma_request_channel()
This patch adds "char *name" to rsnd_dma_request_channel().
It is not yet used so far, but is preparation for
next "ASoC: rsnd: adjust disabled module" patch
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Link: https://lore.kernel.org/r/878s3vk01q.wl-kuninori.morimoto.gx@renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/sh/rcar/ssi.c')
-rw-r--r-- | sound/soc/sh/rcar/ssi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/sh/rcar/ssi.c b/sound/soc/sh/rcar/ssi.c index facdd8c0d419..c00e0d6bb7f4 100644 --- a/sound/soc/sh/rcar/ssi.c +++ b/sound/soc/sh/rcar/ssi.c @@ -1019,7 +1019,7 @@ static struct dma_chan *rsnd_ssi_dma_req(struct rsnd_dai_stream *io, name = is_play ? "rx" : "tx"; return rsnd_dma_request_channel(rsnd_ssi_of_node(priv), - mod, name); + SSI_NAME, mod, name); } #ifdef CONFIG_DEBUG_FS |