From: Kuninori Morimoto Date: Wed, 15 Jul 2015 07:08:24 +0000 (+0000) Subject: ASoC: rsnd: remove unnecessary 'out of memory' message from SSI X-Git-Tag: v4.3-rc1~77^2~7^2~8^2~31 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=afa700729646761f58cc068d86a37e09a70e4cf6;p=karo-tx-linux.git ASoC: rsnd: remove unnecessary 'out of memory' message from SSI Current checkpatch.pl indicates 'out of memory' message is unnecessary. Let's remove it Signed-off-by: Kuninori Morimoto Tested-by: Keita Kobayashi Signed-off-by: Mark Brown --- diff --git a/sound/soc/sh/rcar/ssi.c b/sound/soc/sh/rcar/ssi.c index 2fbe59f7f9b5..d45b9a7e324e 100644 --- a/sound/soc/sh/rcar/ssi.c +++ b/sound/soc/sh/rcar/ssi.c @@ -770,10 +770,8 @@ int rsnd_ssi_probe(struct platform_device *pdev, */ nr = info->ssi_info_nr; ssi = devm_kzalloc(dev, sizeof(*ssi) * nr, GFP_KERNEL); - if (!ssi) { - dev_err(dev, "SSI allocate failed\n"); + if (!ssi) return -ENOMEM; - } priv->ssi = ssi; priv->ssi_nr = nr;