mirror of
https://github.com/torvalds/linux.git
synced 2026-05-29 17:43:52 +02:00
leds: as3645a: Fix error return code in as3645a_parse_node()
Return error code -ENODEV rather than '0' when the indicator node can not
be found.
Fixes: a56ba8fbcb ("media: leds: as3645a: Add LED flash class driver")
Reported-by: Hulk Robot <hulkci@huawei.com>
Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>
Signed-off-by: Pavel Machek <pavel@ucw.cz>
This commit is contained in:
parent
9d0150db97
commit
96a30960a2
|
|
@ -545,6 +545,7 @@ static int as3645a_parse_node(struct as3645a *flash,
|
|||
if (!flash->indicator_node) {
|
||||
dev_warn(&flash->client->dev,
|
||||
"can't find indicator node\n");
|
||||
rval = -ENODEV;
|
||||
goto out_err;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user