projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5bf1340
)
ASoC: max: use helper function
author
Kuninori Morimoto
<kuninori.morimoto.gx@renesas.com>
Tue, 31 Jan 2023 01:59:58 +0000
(
01:59
+0000)
committer
Mark Brown
<broonie@kernel.org>
Tue, 31 Jan 2023 11:04:56 +0000
(11:04 +0000)
Current ASoC has many helper function.
This patch use it.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Link:
https://lore.kernel.org/r/871qnbfopt.wl-kuninori.morimoto.gx@renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/max98373-sdw.c
patch
|
blob
|
history
diff --git
a/sound/soc/codecs/max98373-sdw.c
b/sound/soc/codecs/max98373-sdw.c
index
3cd1be7
..
c9a2d4d
100644
(file)
--- a/
sound/soc/codecs/max98373-sdw.c
+++ b/
sound/soc/codecs/max98373-sdw.c
@@
-689,10
+689,7
@@
static int max98373_set_sdw_stream(struct snd_soc_dai *dai,
stream->sdw_stream = sdw_stream;
/* Use tx_mask or rx_mask to configure stream tag and set dma_data */
- if (direction == SNDRV_PCM_STREAM_PLAYBACK)
- dai->playback_dma_data = stream;
- else
- dai->capture_dma_data = stream;
+ snd_soc_dai_dma_data_set(dai, direction, stream);
return 0;
}