From: Fabio Estevam Date: Mon, 2 Dec 2013 02:41:24 +0000 (-0200) Subject: ASoC: imx-spdif: Remove error message upon devm_kzalloc() failure X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=4ded61eb3ea87e9c563e09662be3ed5e942ff2a2;p=linux-beck.git ASoC: imx-spdif: Remove error message upon devm_kzalloc() failure No need to have a specific OOM message, since there is generic MM out of memory message in place. Signed-off-by: Fabio Estevam Signed-off-by: Mark Brown --- diff --git a/sound/soc/fsl/imx-spdif.c b/sound/soc/fsl/imx-spdif.c index 8499d5292f08..980dd1fc9113 100644 --- a/sound/soc/fsl/imx-spdif.c +++ b/sound/soc/fsl/imx-spdif.c @@ -35,7 +35,6 @@ static int imx_spdif_audio_probe(struct platform_device *pdev) data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL); if (!data) { - dev_err(&pdev->dev, "failed to allocate memory\n"); ret = -ENOMEM; goto end; }