From: Kuninori Morimoto Date: Fri, 18 Oct 2013 05:46:49 +0000 (-0700) Subject: ASoC: simple-card: un-implemented set_fmt is not error X-Git-Tag: v3.13-rc1~2^2~33^2~16^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e244bb9bc1883547d44642c99f483c2e57e2a940;p=platform%2Fkernel%2Flinux-stable.git ASoC: simple-card: un-implemented set_fmt is not error Current simple-card returns error if DAI doesn't support .set_fmt callback. But the error is -ENOTSUPP (= not supported), and it is not error. This patch avoids such case Signed-off-by: Kuninori Morimoto Signed-off-by: Mark Brown --- diff --git a/sound/soc/generic/simple-card.c b/sound/soc/generic/simple-card.c index 8c49147..b2fbb70 100644 --- a/sound/soc/generic/simple-card.c +++ b/sound/soc/generic/simple-card.c @@ -27,6 +27,11 @@ static int __asoc_simple_card_dai_init(struct snd_soc_dai *dai, if (!ret && daifmt) ret = snd_soc_dai_set_fmt(dai, daifmt); + if (ret == -ENOTSUPP) { + dev_dbg(dai->dev, "ASoC: set_fmt is not supported\n"); + ret = 0; + } + if (!ret && set->sysclk) ret = snd_soc_dai_set_sysclk(dai, 0, set->sysclk, 0);