Input: nspire-keypad - add missing clk_disable_unprepare() on error path
Add the missing clk_disable_unprepare() before return from nspire_keypad_open() in the error handling case. Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
This commit is contained in:
parent
1ccd33b8f6
commit
a4da47527d
|
@ -143,8 +143,10 @@ static int nspire_keypad_open(struct input_dev *input)
|
||||||
return error;
|
return error;
|
||||||
|
|
||||||
error = nspire_keypad_chip_init(keypad);
|
error = nspire_keypad_chip_init(keypad);
|
||||||
if (error)
|
if (error) {
|
||||||
|
clk_disable_unprepare(keypad->clk);
|
||||||
return error;
|
return error;
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue