Commit 30f085ca authored by Jingoo Han's avatar Jingoo Han Committed by Linus Torvalds

backlight: ld9040: replace EFAULT with EINVAL

Replace EFAULT with EINVAL, because EFAULT tends to be for the invalid
memory addresses.
Signed-off-by: default avatarJingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent e2ffe856
...@@ -583,7 +583,7 @@ static int ld9040_power_on(struct ld9040 *lcd) ...@@ -583,7 +583,7 @@ static int ld9040_power_on(struct ld9040 *lcd)
if (!pd->reset) { if (!pd->reset) {
dev_err(lcd->dev, "reset is NULL.\n"); dev_err(lcd->dev, "reset is NULL.\n");
return -EFAULT; return -EINVAL;
} else { } else {
pd->reset(lcd->ld); pd->reset(lcd->ld);
msleep(pd->reset_delay); msleep(pd->reset_delay);
...@@ -724,7 +724,7 @@ static int ld9040_probe(struct spi_device *spi) ...@@ -724,7 +724,7 @@ static int ld9040_probe(struct spi_device *spi)
lcd->lcd_pd = spi->dev.platform_data; lcd->lcd_pd = spi->dev.platform_data;
if (!lcd->lcd_pd) { if (!lcd->lcd_pd) {
dev_err(&spi->dev, "platform data is NULL.\n"); dev_err(&spi->dev, "platform data is NULL.\n");
return -EFAULT; return -EINVAL;
} }
mutex_init(&lcd->lock); mutex_init(&lcd->lock);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment