gpio-button-hotplug: use gpio_button_get_value() to fetch state.
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com> SVN-Revision: 37642
This commit is contained in:
parent
2c19af6ac5
commit
ef96422920
1 changed files with 1 additions and 4 deletions
|
@ -288,10 +288,7 @@ static void gpio_keys_polled_check_state(struct gpio_keys_button *button,
|
||||||
{
|
{
|
||||||
int state;
|
int state;
|
||||||
|
|
||||||
if (bdata->can_sleep)
|
state = gpio_button_get_value(button, bdata);
|
||||||
state = !!gpio_get_value_cansleep(button->gpio);
|
|
||||||
else
|
|
||||||
state = !!gpio_get_value(button->gpio);
|
|
||||||
|
|
||||||
state = !!(state ^ button->active_low);
|
state = !!(state ^ button->active_low);
|
||||||
if (state != bdata->last_state) {
|
if (state != bdata->last_state) {
|
||||||
|
|
Loading…
Reference in a new issue