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>
This commit is contained in:
Родитель
39dd56776e
Коммит
0178f41d3d
|
@ -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) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче