1
0
Fork 0

clocksource: sh_cmt: Remove unnecessary OOM messages

The site-specific OOM messages are unnecessary, because they
duplicate the MM subsystem generic OOM message.

[dlezcano] : refreshed against latest modifications: kmalloc -> kzalloc

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
hifive-unleashed-5.1
Jingoo Han 2014-05-22 14:05:06 +02:00 committed by Daniel Lezcano
parent 39dd56776e
commit 0178f41d3d
1 changed files with 1 additions and 3 deletions

View File

@ -1106,10 +1106,8 @@ static int sh_cmt_probe(struct platform_device *pdev)
}
cmt = kzalloc(sizeof(*cmt), GFP_KERNEL);
if (cmt == NULL) {
dev_err(&pdev->dev, "failed to allocate driver data\n");
if (cmt == NULL)
return -ENOMEM;
}
ret = sh_cmt_setup(cmt, pdev);
if (ret) {