提交 8a7f102c 编写于 作者: A Arvind Yadav 提交者: Dmitry Torokhov

Input: tegra-kbc - handle return value of clk_prepare_enable

clk_prepare_enable() can fail here and we must check its return value.
Signed-off-by: NArvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: NDmitry Torokhov <dmitry.torokhov@gmail.com>
上级 9ee0a055
...@@ -370,8 +370,11 @@ static int tegra_kbc_start(struct tegra_kbc *kbc) ...@@ -370,8 +370,11 @@ static int tegra_kbc_start(struct tegra_kbc *kbc)
{ {
unsigned int debounce_cnt; unsigned int debounce_cnt;
u32 val = 0; u32 val = 0;
int ret;
clk_prepare_enable(kbc->clk); ret = clk_prepare_enable(kbc->clk);
if (ret)
return ret;
/* Reset the KBC controller to clear all previous status.*/ /* Reset the KBC controller to clear all previous status.*/
reset_control_assert(kbc->rst); reset_control_assert(kbc->rst);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册