forked from Minki/linux
ASoC: wm8776: Use WARN_ON() instead of BUG_ON()
Use WARN_ON() and handle the error cases accordingly. Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
parent
95ff71e938
commit
22a7038c39
@ -325,7 +325,8 @@ static int wm8776_set_sysclk(struct snd_soc_dai *dai,
|
|||||||
struct snd_soc_codec *codec = dai->codec;
|
struct snd_soc_codec *codec = dai->codec;
|
||||||
struct wm8776_priv *wm8776 = snd_soc_codec_get_drvdata(codec);
|
struct wm8776_priv *wm8776 = snd_soc_codec_get_drvdata(codec);
|
||||||
|
|
||||||
BUG_ON(dai->driver->id >= ARRAY_SIZE(wm8776->sysclk));
|
if (WARN_ON(dai->driver->id >= ARRAY_SIZE(wm8776->sysclk)))
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
wm8776->sysclk[dai->driver->id] = freq;
|
wm8776->sysclk[dai->driver->id] = freq;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user