aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2014-04-03 17:49:43 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2014-04-03 19:21:17 -0400
commit49ae425b8273d0856ffef41df51a1d1bdd06d0d0 (patch)
treedbb17012d2c61f5b3273c6452ef3fbc87ccfd9e7
parentee567199941245e1d3f7b8df0113d1077e78ce0b (diff)
rtc: rtc-pm8xxx: remove unnecessary OOM messages
The site-specific OOM messages are unnecessary, because they duplicate the MM subsystem generic OOM message. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--drivers/rtc/rtc-pm8xxx.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/rtc/rtc-pm8xxx.c b/drivers/rtc/rtc-pm8xxx.c
index 03f8f75d5af2..bd76ffe92784 100644
--- a/drivers/rtc/rtc-pm8xxx.c
+++ b/drivers/rtc/rtc-pm8xxx.c
@@ -396,10 +396,8 @@ static int pm8xxx_rtc_probe(struct platform_device *pdev)
396 rtc_write_enable = pdata->rtc_write_enable; 396 rtc_write_enable = pdata->rtc_write_enable;
397 397
398 rtc_dd = devm_kzalloc(&pdev->dev, sizeof(*rtc_dd), GFP_KERNEL); 398 rtc_dd = devm_kzalloc(&pdev->dev, sizeof(*rtc_dd), GFP_KERNEL);
399 if (rtc_dd == NULL) { 399 if (rtc_dd == NULL)
400 dev_err(&pdev->dev, "Unable to allocate memory!\n");
401 return -ENOMEM; 400 return -ENOMEM;
402 }
403 401
404 /* Initialise spinlock to protect RTC control register */ 402 /* Initialise spinlock to protect RTC control register */
405 spin_lock_init(&rtc_dd->ctrl_reg_lock); 403 spin_lock_init(&rtc_dd->ctrl_reg_lock);