diff options
author | Jingoo Han <jg1.han@samsung.com> | 2014-04-03 17:49:06 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-04-03 19:21:11 -0400 |
commit | 3d8e4b401cdf6fcfdd1a897f585c88afc2e386c7 (patch) | |
tree | 3d00fd93d3f28e302d568e95ee89e74c80454a94 | |
parent | c6915be435f93d725cd158d1a70251d3ff70737e (diff) |
backlight: tps65217_bl: 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/video/backlight/tps65217_bl.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/video/backlight/tps65217_bl.c b/drivers/video/backlight/tps65217_bl.c index cbba37e6836e..595dcf561020 100644 --- a/drivers/video/backlight/tps65217_bl.c +++ b/drivers/video/backlight/tps65217_bl.c | |||
@@ -200,7 +200,6 @@ tps65217_bl_parse_dt(struct platform_device *pdev) | |||
200 | 200 | ||
201 | pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL); | 201 | pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL); |
202 | if (!pdata) { | 202 | if (!pdata) { |
203 | dev_err(&pdev->dev, "failed to allocate platform data\n"); | ||
204 | err = ERR_PTR(-ENOMEM); | 203 | err = ERR_PTR(-ENOMEM); |
205 | goto err; | 204 | goto err; |
206 | } | 205 | } |
@@ -296,10 +295,8 @@ static int tps65217_bl_probe(struct platform_device *pdev) | |||
296 | 295 | ||
297 | tps65217_bl = devm_kzalloc(&pdev->dev, sizeof(*tps65217_bl), | 296 | tps65217_bl = devm_kzalloc(&pdev->dev, sizeof(*tps65217_bl), |
298 | GFP_KERNEL); | 297 | GFP_KERNEL); |
299 | if (tps65217_bl == NULL) { | 298 | if (tps65217_bl == NULL) |
300 | dev_err(&pdev->dev, "allocation of struct tps65217_bl failed\n"); | ||
301 | return -ENOMEM; | 299 | return -ENOMEM; |
302 | } | ||
303 | 300 | ||
304 | tps65217_bl->tps = tps; | 301 | tps65217_bl->tps = tps; |
305 | tps65217_bl->dev = &pdev->dev; | 302 | tps65217_bl->dev = &pdev->dev; |