1
0
Fork 0

pinctrl: pinctrl_select_state: set the old_state back on error

In unapply_new_state, the old state is re-applied, but p->state is not
set back as it should.

Signed-off-by: Richard Genoud <richard.genoud@gmail.com>
Reviewed-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
hifive-unleashed-5.1
Richard Genoud 2013-03-28 12:55:48 +01:00 committed by Linus Walleij
parent 8009d5ff00
commit 175ca83c0b
1 changed files with 2 additions and 0 deletions

View File

@ -991,6 +991,8 @@ unapply_new_state:
pinmux_enable_setting(setting);
}
}
p->state = old_state;
return ret;
}