aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2014-04-03 14:49:05 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2014-04-03 16:21:11 -0700
commitc6915be435f93d725cd158d1a70251d3ff70737e (patch)
treefe85192dcb7f8449ca17c55791b004024c916256 /drivers
parentbacklight: lms283gf05: remove unnecessary OOM messages (diff)
downloadlinux-dev-c6915be435f93d725cd158d1a70251d3ff70737e.tar.xz
linux-dev-c6915be435f93d725cd158d1a70251d3ff70737e.zip
backlight: platform_lcd: 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>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/video/backlight/platform_lcd.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/video/backlight/platform_lcd.c b/drivers/video/backlight/platform_lcd.c
index d01884d4f1bf..c3d2e209fc8f 100644
--- a/drivers/video/backlight/platform_lcd.c
+++ b/drivers/video/backlight/platform_lcd.c
@@ -94,10 +94,8 @@ static int platform_lcd_probe(struct platform_device *pdev)
plcd = devm_kzalloc(&pdev->dev, sizeof(struct platform_lcd),
GFP_KERNEL);
- if (!plcd) {
- dev_err(dev, "no memory for state\n");
+ if (!plcd)
return -ENOMEM;
- }
plcd->us = dev;
plcd->pdata = pdata;