diff options
author | Jingoo Han <jg1.han@samsung.com> | 2014-05-22 08:05:07 -0400 |
---|---|---|
committer | Daniel Lezcano <daniel.lezcano@linaro.org> | 2014-05-23 03:23:11 -0400 |
commit | 814876b0b00ae98a8568d1b989bc98ca5389b98a (patch) | |
tree | deeffccc275bf08076f4a2ba2c91932f7fd712d3 /drivers/clocksource | |
parent | c77a565b2966567b97d589e90a6b9ce725bb15b1 (diff) |
clocksource: sh_tmu: 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>
Diffstat (limited to 'drivers/clocksource')
-rw-r--r-- | drivers/clocksource/sh_tmu.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/clocksource/sh_tmu.c b/drivers/clocksource/sh_tmu.c index 4ba2c0fea580..a38022fa286f 100644 --- a/drivers/clocksource/sh_tmu.c +++ b/drivers/clocksource/sh_tmu.c | |||
@@ -644,10 +644,8 @@ static int sh_tmu_probe(struct platform_device *pdev) | |||
644 | } | 644 | } |
645 | 645 | ||
646 | tmu = kzalloc(sizeof(*tmu), GFP_KERNEL); | 646 | tmu = kzalloc(sizeof(*tmu), GFP_KERNEL); |
647 | if (tmu == NULL) { | 647 | if (tmu == NULL) |
648 | dev_err(&pdev->dev, "failed to allocate driver data\n"); | ||
649 | return -ENOMEM; | 648 | return -ENOMEM; |
650 | } | ||
651 | 649 | ||
652 | ret = sh_tmu_setup(tmu, pdev); | 650 | ret = sh_tmu_setup(tmu, pdev); |
653 | if (ret) { | 651 | if (ret) { |