mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
ASoC: hisilicon: Add error returns even for cases that shouldn't happen.
This patch addresses feedback from Mark Brown, adding a few extra error returns in cases that shouldn't happen Signed-off-by: John Stultz <john.stultz@linaro.org> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
86666c083a
commit
da13d7462b
1 changed files with 2 additions and 0 deletions
|
@ -395,6 +395,7 @@ static int hi6210_i2s_hw_params(struct snd_pcm_substream *substream,
|
|||
break;
|
||||
default:
|
||||
WARN_ONCE(1, "Invalid i2s->fmt MASTER_MASK. This shouldn't happen\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
switch (i2s->format & SND_SOC_DAIFMT_FORMAT_MASK) {
|
||||
|
@ -409,6 +410,7 @@ static int hi6210_i2s_hw_params(struct snd_pcm_substream *substream,
|
|||
break;
|
||||
default:
|
||||
WARN_ONCE(1, "Invalid i2s->fmt FORMAT_MASK. This shouldn't happen\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
val = hi6210_read_reg(i2s, HII2S_I2S_CFG);
|
||||
|
|
Loading…
Reference in a new issue