mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
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>
This commit is contained in:
parent
e1094f9f74
commit
c6915be435
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user