clocksource: sh_cmt: Remove unnecessary OOM messages
authorJingoo Han <jg1.han@samsung.com>
Thu, 22 May 2014 12:05:06 +0000 (14:05 +0200)
committerSimon Horman <horms@verge.net.au>
Fri, 5 Dec 2014 00:22:51 +0000 (09:22 +0900)
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>
(cherry picked from commit 0178f41d3d35b63ed25a066d90e7dda380018c06)
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
drivers/clocksource/sh_cmt.c

index bc8d025..dfa7803 100644 (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) {