]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
ASoC: rcar: fix return value check in rsnd_gen1_probe()
authorWei Yongjun <yongjun_wei@trendmicro.com.cn>
Mon, 29 Jul 2013 23:51:37 +0000 (07:51 +0800)
committerMark Brown <broonie@linaro.org>
Wed, 31 Jul 2013 14:00:01 +0000 (15:00 +0100)
commit70263cb474853c116f80713d468f3c17d805921c
treed92b3ea733464c520bf6d560f9e1b94096aabb95
parentae5c322303fff50b93d60e34c6563f1264a5941b
ASoC: rcar: fix return value check in rsnd_gen1_probe()

In case of error, the function devm_ioremap_resource() returns ERR_PTR()
and never returns NULL. The NULL test in the return value check should be
replaced with IS_ERR(), and also remove the dev_err call to avoid redundant
error message.

Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Acked-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
sound/soc/sh/rcar/gen.c