projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e2ffe85
)
backlight: ld9040: replace EFAULT with EINVAL
author
Jingoo Han
<
[email protected]
>
Fri, 22 Feb 2013 00:43:17 +0000
(16:43 -0800)
committer
Linus Torvalds
<
[email protected]
>
Fri, 22 Feb 2013 01:22:21 +0000
(17:22 -0800)
Replace EFAULT with EINVAL, because EFAULT tends to be for the invalid
memory addresses.
Signed-off-by: Jingoo Han <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
drivers/video/backlight/ld9040.c
patch
|
blob
|
history
diff --git
a/drivers/video/backlight/ld9040.c
b/drivers/video/backlight/ld9040.c
index 45f795ab43945318a57e110fc56b5e0737faef12..fd7bb1cf21a856b73a1e9975a05db6d471a56d35 100644
(file)
--- a/
drivers/video/backlight/ld9040.c
+++ b/
drivers/video/backlight/ld9040.c
@@
-583,7
+583,7
@@
static int ld9040_power_on(struct ld9040 *lcd)
if (!pd->reset) {
dev_err(lcd->dev, "reset is NULL.\n");
- return -E
FAULT
;
+ return -E
INVAL
;
} else {
pd->reset(lcd->ld);
msleep(pd->reset_delay);
@@
-724,7
+724,7
@@
static int ld9040_probe(struct spi_device *spi)
lcd->lcd_pd = spi->dev.platform_data;
if (!lcd->lcd_pd) {
dev_err(&spi->dev, "platform data is NULL.\n");
- return -E
FAULT
;
+ return -E
INVAL
;
}
mutex_init(&lcd->lock);