diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2021-10-18 11:05:44 +0900 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-10-18 13:56:40 +0100 |
commit | 7db07e37e13cfd46039d82aed91092185eac6565 (patch) | |
tree | 271cc60b3c7b6eae6cbfcc73282acd2addcf9ffc /sound/soc/meson | |
parent | 41b1774fb814544d2224bdfd893c060fdfed995b (diff) | |
download | linux-7db07e37e13cfd46039d82aed91092185eac6565.tar.bz2 |
ASoC: soc-core: accept zero format at snd_soc_runtime_set_dai_fmt()
Do nothing if format was zero at snd_soc_runtime_set_dai_fmt().
soc-core.c can be more simple code by this patch.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Link: https://lore.kernel.org/r/87ee8jt7d3.wl-kuninori.morimoto.gx@renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/meson')
-rw-r--r-- | sound/soc/meson/meson-codec-glue.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sound/soc/meson/meson-codec-glue.c b/sound/soc/meson/meson-codec-glue.c index d07270d17cee..2870cfad813a 100644 --- a/sound/soc/meson/meson-codec-glue.c +++ b/sound/soc/meson/meson-codec-glue.c @@ -113,9 +113,6 @@ int meson_codec_glue_output_startup(struct snd_pcm_substream *substream, /* Replace link params with the input params */ rtd->dai_link->params = &in_data->params; - if (!in_data->fmt) - return 0; - return snd_soc_runtime_set_dai_fmt(rtd, in_data->fmt); } EXPORT_SYMBOL_GPL(meson_codec_glue_output_startup); |