diff options
-rw-r--r-- | firmware/target/arm/imx31/gigabeat-s/button-imx31.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/arm/imx31/gigabeat-s/button-imx31.c b/firmware/target/arm/imx31/gigabeat-s/button-imx31.c index 493ce3af3e..602f41abb9 100644 --- a/firmware/target/arm/imx31/gigabeat-s/button-imx31.c +++ b/firmware/target/arm/imx31/gigabeat-s/button-imx31.c @@ -102,7 +102,7 @@ static __attribute__((interrupt("IRQ"))) void KPP_HANDLER(void) /* 10. Re-enable the appropriate keypad interrupt(s) so that the KDIE * detects a key hold condition, or the KRIE detects a key-release * event. */ - if (int_btn != BUTTON_NONE) + if (button != BUTTON_NONE) KPP_KPSR |= KPP_KPSR_KRIE; else KPP_KPSR |= KPP_KPSR_KDIE; |