mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 14:04:54 +02:00
Input: tegra-kbc - fix inverted reset logic
commitfae16989beupstream. Commitfe6b0dfaba("Input: tegra-kbc - use reset framework") accidentally converted _deassert to _assert, so there is no code to wake up this hardware. Fixes:fe6b0dfaba("Input: tegra-kbc - use reset framework") Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Acked-by: Thierry Reding <treding@nvidia.com> Acked-by: Laxman Dewangan <ldewangan@nvidia.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
cc79d3982d
commit
d6720176bc
|
|
@ -376,7 +376,7 @@ static int tegra_kbc_start(struct tegra_kbc *kbc)
|
|||
/* Reset the KBC controller to clear all previous status.*/
|
||||
reset_control_assert(kbc->rst);
|
||||
udelay(100);
|
||||
reset_control_assert(kbc->rst);
|
||||
reset_control_deassert(kbc->rst);
|
||||
udelay(100);
|
||||
|
||||
tegra_kbc_config_pins(kbc);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user