mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
backlight: ams369fg06: Remove 'else' after a return
Fixed the following checkpatch warning. WARNING: else is not generally useful after a break or return Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Lee Jones <lee.jones@linaro.org>
This commit is contained in:
parent
fe9a86235d
commit
5b0d6e1912
@ -325,11 +325,11 @@ static int ams369fg06_power_on(struct ams369fg06 *lcd)
|
||||
if (!pd->reset) {
|
||||
dev_err(lcd->dev, "reset is NULL.\n");
|
||||
return -EINVAL;
|
||||
} else {
|
||||
pd->reset(lcd->ld);
|
||||
msleep(pd->reset_delay);
|
||||
}
|
||||
|
||||
pd->reset(lcd->ld);
|
||||
msleep(pd->reset_delay);
|
||||
|
||||
ret = ams369fg06_ldi_init(lcd);
|
||||
if (ret) {
|
||||
dev_err(lcd->dev, "failed to initialize ldi.\n");
|
||||
|
Loading…
Reference in New Issue
Block a user