diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-02-21 19:43:29 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-02-21 20:22:22 -0500 |
commit | 1d7976b24d11f1ba971b95382735b300be80f3df (patch) | |
tree | 34ee245520ea604e2ff6784a9fd0fbd53dec9e28 /drivers/video | |
parent | 66ecc11dfc3c9b47f9f78b7455c3d498329e891a (diff) |
backlight: ams369fg06: replace EFAULT with EINVAL
Replace EFAULT with EINVAL, because EFAULT tends to be for the invalid
memory addresses.
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/video')
-rw-r--r-- | drivers/video/backlight/ams369fg06.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/video/backlight/ams369fg06.c b/drivers/video/backlight/ams369fg06.c index b4bf130bc203..22756dda8682 100644 --- a/drivers/video/backlight/ams369fg06.c +++ b/drivers/video/backlight/ams369fg06.c | |||
@@ -328,7 +328,7 @@ static int ams369fg06_power_on(struct ams369fg06 *lcd) | |||
328 | 328 | ||
329 | if (!pd->power_on) { | 329 | if (!pd->power_on) { |
330 | dev_err(lcd->dev, "power_on is NULL.\n"); | 330 | dev_err(lcd->dev, "power_on is NULL.\n"); |
331 | return -EFAULT; | 331 | return -EINVAL; |
332 | } else { | 332 | } else { |
333 | pd->power_on(lcd->ld, 1); | 333 | pd->power_on(lcd->ld, 1); |
334 | msleep(pd->power_on_delay); | 334 | msleep(pd->power_on_delay); |
@@ -336,7 +336,7 @@ static int ams369fg06_power_on(struct ams369fg06 *lcd) | |||
336 | 336 | ||
337 | if (!pd->reset) { | 337 | if (!pd->reset) { |
338 | dev_err(lcd->dev, "reset is NULL.\n"); | 338 | dev_err(lcd->dev, "reset is NULL.\n"); |
339 | return -EFAULT; | 339 | return -EINVAL; |
340 | } else { | 340 | } else { |
341 | pd->reset(lcd->ld); | 341 | pd->reset(lcd->ld); |
342 | msleep(pd->reset_delay); | 342 | msleep(pd->reset_delay); |
@@ -485,7 +485,7 @@ static int ams369fg06_probe(struct spi_device *spi) | |||
485 | lcd->lcd_pd = spi->dev.platform_data; | 485 | lcd->lcd_pd = spi->dev.platform_data; |
486 | if (!lcd->lcd_pd) { | 486 | if (!lcd->lcd_pd) { |
487 | dev_err(&spi->dev, "platform data is NULL\n"); | 487 | dev_err(&spi->dev, "platform data is NULL\n"); |
488 | return -EFAULT; | 488 | return -EINVAL; |
489 | } | 489 | } |
490 | 490 | ||
491 | ld = lcd_device_register("ams369fg06", &spi->dev, lcd, | 491 | ld = lcd_device_register("ams369fg06", &spi->dev, lcd, |