From 8c4ec5c0269bda18bb777a64b2008088d1c632dc Mon Sep 17 00:00:00 2001 From: Andrzej Zaborowski Date: Tue, 17 Jan 2012 02:14:42 +0100 Subject: pxa2xx_keypad: fix unbalanced parenthesis. Breakage introduced by me when ammending a previous patch, sorry. --- hw/pxa2xx_keypad.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hw/pxa2xx_keypad.c') diff --git a/hw/pxa2xx_keypad.c b/hw/pxa2xx_keypad.c index 0e80212804..59db02584e 100644 --- a/hw/pxa2xx_keypad.c +++ b/hw/pxa2xx_keypad.c @@ -165,7 +165,7 @@ static void pxa27x_keyboard_event (PXA2xxKeyPadState *kp, int keycode) kp->kpas |= ((row & 0xf) << 4) | (col & 0xf); } - if (!(kp->kpc & (KPC_AS | KPC_ASACT)) + if (!(kp->kpc & (KPC_AS | KPC_ASACT))) assert_irq = 0; if (assert_irq && (kp->kpc & KPC_MIE)) { -- cgit v1.2.3