diff options
author | Jingoo Han <jg1.han@samsung.com> | 2014-04-03 17:48:57 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-04-03 19:21:10 -0400 |
commit | ba464d0c88af59ccd35929eff010747de0fb0dec (patch) | |
tree | e2506c85fef78407a6899c51366a31f70e799323 | |
parent | 78b35cf81e5d8b449f09aef0a65ac2d521dcce36 (diff) |
backlight: adp8860: 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>
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>
-rw-r--r-- | drivers/video/backlight/adp8860_bl.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/video/backlight/adp8860_bl.c b/drivers/video/backlight/adp8860_bl.c index 9d656717d0f7..be8d83deca7d 100644 --- a/drivers/video/backlight/adp8860_bl.c +++ b/drivers/video/backlight/adp8860_bl.c | |||
@@ -224,10 +224,8 @@ static int adp8860_led_probe(struct i2c_client *client) | |||
224 | 224 | ||
225 | led = devm_kzalloc(&client->dev, sizeof(*led) * pdata->num_leds, | 225 | led = devm_kzalloc(&client->dev, sizeof(*led) * pdata->num_leds, |
226 | GFP_KERNEL); | 226 | GFP_KERNEL); |
227 | if (led == NULL) { | 227 | if (led == NULL) |
228 | dev_err(&client->dev, "failed to alloc memory\n"); | ||
229 | return -ENOMEM; | 228 | return -ENOMEM; |
230 | } | ||
231 | 229 | ||
232 | ret = adp8860_write(client, ADP8860_ISCFR, pdata->led_fade_law); | 230 | ret = adp8860_write(client, ADP8860_ISCFR, pdata->led_fade_law); |
233 | ret = adp8860_write(client, ADP8860_ISCT1, | 231 | ret = adp8860_write(client, ADP8860_ISCT1, |