backlight: adp8860: remove unnecessary OOM messages
authorJingoo Han <jg1.han@samsung.com>
Thu, 3 Apr 2014 21:48:57 +0000 (14:48 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Thu, 3 Apr 2014 23:21:10 +0000 (16:21 -0700)
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>
Acked-by: Michael Hennerich <michael.hennerich@analog.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/video/backlight/adp8860_bl.c

index 9d656717d0f784cef243630d559ab93d674c45a8..be8d83deca7d5a2a7ca563873a7008d33599541b 100644 (file)
@@ -224,10 +224,8 @@ static int adp8860_led_probe(struct i2c_client *client)
 
        led = devm_kzalloc(&client->dev, sizeof(*led) * pdata->num_leds,
                                GFP_KERNEL);
-       if (led == NULL) {
-               dev_err(&client->dev, "failed to alloc memory\n");
+       if (led == NULL)
                return -ENOMEM;
-       }
 
        ret = adp8860_write(client, ADP8860_ISCFR, pdata->led_fade_law);
        ret = adp8860_write(client, ADP8860_ISCT1,
This page took 0.03736 seconds and 5 git commands to generate.