From 560a64749d1dd0ff2352f625ca12eecea17064f4 Mon Sep 17 00:00:00 2001 From: Robin Gong Date: Wed, 18 Jun 2014 14:14:09 +0800 Subject: ENGR00318936-2 input: keyboard: imx: remove usless release interrupt enabled code Remove useless code for release interrupt enabled, because we check status by timer rather than release interrupt. Remove the code which may disable depress interrupt. Also make sure enable depress interrupt in suspend function. Signed-off-by: Robin Gong --- drivers/input/keyboard/imx_keypad.c | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/drivers/input/keyboard/imx_keypad.c b/drivers/input/keyboard/imx_keypad.c index 6c545bf607e7..12e49f17e740 100644 --- a/drivers/input/keyboard/imx_keypad.c +++ b/drivers/input/keyboard/imx_keypad.c @@ -285,11 +285,6 @@ static void imx_keypad_check_for_events(unsigned long data) reg_val = readw(keypad->mmio_base + KPSR); reg_val |= KBD_STAT_KPKR | KBD_STAT_KRSS; writew(reg_val, keypad->mmio_base + KPSR); - - reg_val = readw(keypad->mmio_base + KPSR); - reg_val |= KBD_STAT_KRIE; - reg_val &= ~KBD_STAT_KDIE; - writew(reg_val, keypad->mmio_base + KPSR); } } @@ -545,6 +540,7 @@ static int imx_kbd_suspend(struct device *dev) struct platform_device *pdev = to_platform_device(dev); struct imx_keypad *kbd = platform_get_drvdata(pdev); struct input_dev *input_dev = kbd->input_dev; + unsigned short reg_val = readw(kbd->mmio_base + KPSR); /* imx kbd can wake up system even clock is disabled */ mutex_lock(&input_dev->mutex); @@ -554,8 +550,14 @@ static int imx_kbd_suspend(struct device *dev) mutex_unlock(&input_dev->mutex); - if (device_may_wakeup(&pdev->dev)) + if (device_may_wakeup(&pdev->dev)) { + /* make sure KDI interrupt enabled */ + reg_val |= KBD_STAT_KDIE; + reg_val &= ~KBD_STAT_KRIE; + writew(reg_val, kbd->mmio_base + KPSR); + enable_irq_wake(kbd->irq); + } else pinctrl_pm_select_sleep_state(dev); -- cgit v1.2.2