Commit 64be2814 authored by Daniel Mack's avatar Daniel Mack Committed by Mark Brown

ARM: pxa: ssp: remove unnecessary warning on kzalloc() failure

The memory subsystem will already complain loudly enough in such cases.
Signed-off-by: default avatarDaniel Mack <zonque@gmail.com>
Acked-by: default avatarHaojian Zhuang <haojian.zhuang@gmail.com>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent 4edec9ea
......@@ -80,10 +80,9 @@ static int pxa_ssp_probe(struct platform_device *pdev)
int ret = 0;
ssp = kzalloc(sizeof(struct ssp_device), GFP_KERNEL);
if (ssp == NULL) {
dev_err(&pdev->dev, "failed to allocate memory");
if (ssp == NULL)
return -ENOMEM;
}
ssp->pdev = pdev;
ssp->clk = clk_get(&pdev->dev, NULL);
......
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