projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5cab4d8
)
Input: tegra-kbc - fix inverted reset logic
author
Masahiro Yamada
<
[email protected]
>
Mon, 22 Aug 2016 20:25:56 +0000
(13:25 -0700)
committer
Dmitry Torokhov
<
[email protected]
>
Mon, 22 Aug 2016 21:14:45 +0000
(14:14 -0700)
Commit
fe6b0dfaba68
("Input: tegra-kbc - use reset framework")
accidentally converted _deassert to _assert, so there is no code
to wake up this hardware.
Fixes: fe6b0dfaba68 ("Input: tegra-kbc - use reset framework")
Signed-off-by: Masahiro Yamada <
[email protected]
>
Acked-by: Thierry Reding <
[email protected]
>
Acked-by: Laxman Dewangan <
[email protected]
>
Cc:
[email protected]
Signed-off-by: Dmitry Torokhov <
[email protected]
>
drivers/input/keyboard/tegra-kbc.c
patch
|
blob
|
history
diff --git
a/drivers/input/keyboard/tegra-kbc.c
b/drivers/input/keyboard/tegra-kbc.c
index 7d61439be5f27aadb3480cee68a17b21ef17a5db..0c07e1023a4693ac705acea1b26068c65c54b39f 100644
(file)
--- a/
drivers/input/keyboard/tegra-kbc.c
+++ b/
drivers/input/keyboard/tegra-kbc.c
@@
-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_
de
assert(kbc->rst);
udelay(100);
tegra_kbc_config_pins(kbc);