aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/clocksource
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2014-05-22 08:05:07 -0400
committerDaniel Lezcano <daniel.lezcano@linaro.org>2014-05-23 03:23:11 -0400
commitc77a565b2966567b97d589e90a6b9ce725bb15b1 (patch)
tree9b7b4dc7d1ec38358894a85d33d600228db27c48 /drivers/clocksource
parent0178f41d3d35b63ed25a066d90e7dda380018c06 (diff)
clocksource: sh_mtu2: 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_mtu2.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/clocksource/sh_mtu2.c b/drivers/clocksource/sh_mtu2.c
index f2c1c36139e1..188d4e092efc 100644
--- a/drivers/clocksource/sh_mtu2.c
+++ b/drivers/clocksource/sh_mtu2.c
@@ -533,10 +533,8 @@ static int sh_mtu2_probe(struct platform_device *pdev)
533 } 533 }
534 534
535 mtu = kzalloc(sizeof(*mtu), GFP_KERNEL); 535 mtu = kzalloc(sizeof(*mtu), GFP_KERNEL);
536 if (mtu == NULL) { 536 if (mtu == NULL)
537 dev_err(&pdev->dev, "failed to allocate driver data\n");
538 return -ENOMEM; 537 return -ENOMEM;
539 }
540 538
541 ret = sh_mtu2_setup(mtu, pdev); 539 ret = sh_mtu2_setup(mtu, pdev);
542 if (ret) { 540 if (ret) {