diff options
author | Jingoo Han <jg1.han@samsung.com> | 2014-05-22 08:05:06 -0400 |
---|---|---|
committer | Daniel Lezcano <daniel.lezcano@linaro.org> | 2014-05-23 03:23:10 -0400 |
commit | 0178f41d3d35b63ed25a066d90e7dda380018c06 (patch) | |
tree | 25227400c3f7dabd3c9392618a7ec89c8cef8103 | |
parent | 39dd56776e3583d08bdfaabae2171a1a70a679c9 (diff) |
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>
-rw-r--r-- | drivers/clocksource/sh_cmt.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/clocksource/sh_cmt.c b/drivers/clocksource/sh_cmt.c index bc8d025ce861..dfa780396b91 100644 --- a/drivers/clocksource/sh_cmt.c +++ b/drivers/clocksource/sh_cmt.c | |||
@@ -1106,10 +1106,8 @@ static int sh_cmt_probe(struct platform_device *pdev) | |||
1106 | } | 1106 | } |
1107 | 1107 | ||
1108 | cmt = kzalloc(sizeof(*cmt), GFP_KERNEL); | 1108 | cmt = kzalloc(sizeof(*cmt), GFP_KERNEL); |
1109 | if (cmt == NULL) { | 1109 | if (cmt == NULL) |
1110 | dev_err(&pdev->dev, "failed to allocate driver data\n"); | ||
1111 | return -ENOMEM; | 1110 | return -ENOMEM; |
1112 | } | ||
1113 | 1111 | ||
1114 | ret = sh_cmt_setup(cmt, pdev); | 1112 | ret = sh_cmt_setup(cmt, pdev); |
1115 | if (ret) { | 1113 | if (ret) { |