[PATCH 5/8] ASoC: rockchip: i2s-tdm: Fix clk_id usage in .set_sysclk()
Mark Brown
broonie at kernel.org
Thu Sep 8 09:36:27 PDT 2022
On Wed, Sep 07, 2022 at 04:21:21PM +0200, luca.ceresoli at bootlin.com wrote:
> -static int rockchip_i2s_tdm_set_sysclk(struct snd_soc_dai *cpu_dai, int stream,
> +static int rockchip_i2s_tdm_set_sysclk(struct snd_soc_dai *cpu_dai, int clk_id,
> unsigned int freq, int dir)
> {
> struct rk_i2s_tdm_dev *i2s_tdm = to_info(cpu_dai);
> @@ -978,15 +981,18 @@ static int rockchip_i2s_tdm_set_sysclk(struct snd_soc_dai *cpu_dai, int stream,
> if (i2s_tdm->clk_trcm) {
> i2s_tdm->mclk_tx_freq = freq;
> i2s_tdm->mclk_rx_freq = freq;
> +
> + dev_dbg(i2s_tdm->dev, "mclk freq: %u", freq);
> } else {
> - if (stream == SNDRV_PCM_STREAM_PLAYBACK)
> + if (clk_id == CLK_IDX_MCLK_TX)
> i2s_tdm->mclk_tx_freq = freq;
> - else
> + else if (clk_id == CLK_IDX_MCLK_RX)
> i2s_tdm->mclk_rx_freq = freq;
> - }
> + else
> + return -ENOTSUPP;
This should be a switch statement for clarity and exensibility.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 488 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20220908/360516ff/attachment.sig>
More information about the linux-arm-kernel
mailing list