From: Andrzej Zaborowski Date: Tue, 17 Jan 2012 01:14:42 +0000 (+0100) Subject: pxa2xx_keypad: fix unbalanced parenthesis. X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=8c4ec5c0269bda18bb777a64b2008088d1c632dc;p=qemu.git pxa2xx_keypad: fix unbalanced parenthesis. Breakage introduced by me when ammending a previous patch, sorry. --- 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)) {