Commit 723ca2f8 authored by Zhen Lei's avatar Zhen Lei Committed by Mark Brown

ASoC: fsl: remove unnecessary oom message

Fixes scripts/checkpatch.pl warning:
WARNING: Possible unnecessary 'out of memory' message

Remove it can help us save a bit of memory.
Signed-off-by: default avatarZhen Lei <thunder.leizhen@huawei.com>
Link: https://lore.kernel.org/r/20210617103141.1765-1-thunder.leizhen@huawei.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 657e473e
...@@ -209,10 +209,8 @@ static int imx_audmix_probe(struct platform_device *pdev) ...@@ -209,10 +209,8 @@ static int imx_audmix_probe(struct platform_device *pdev)
/* for CPU/Codec/Platform x 2 */ /* for CPU/Codec/Platform x 2 */
dlc = devm_kcalloc(&pdev->dev, 6, sizeof(*dlc), GFP_KERNEL); dlc = devm_kcalloc(&pdev->dev, 6, sizeof(*dlc), GFP_KERNEL);
if (!dlc) { if (!dlc)
dev_err(&pdev->dev, "failed to allocate dai_link\n");
return -ENOMEM; return -ENOMEM;
}
ret = of_parse_phandle_with_args(audmix_np, "dais", NULL, i, ret = of_parse_phandle_with_args(audmix_np, "dais", NULL, i,
&args); &args);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment