1
0
Fork 0

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

The memory subsystem will already complain loudly enough in such cases.

Signed-off-by: Daniel Mack <zonque@gmail.com>
Acked-by: Haojian Zhuang <haojian.zhuang@gmail.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
hifive-unleashed-5.1
Daniel Mack 2013-08-12 10:37:14 +02:00 committed by Mark Brown
parent 4edec9eaf4
commit 64be28146f
1 changed files with 2 additions and 3 deletions

View File

@ -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);