diff options
author | Andrzej Zaborowski | 2012-01-17 02:14:42 +0100 |
---|---|---|
committer | Andrzej Zaborowski | 2012-01-17 02:14:42 +0100 |
commit | 8c4ec5c0269bda18bb777a64b2008088d1c632dc (patch) | |
tree | 0218b39900525d3b6d39c1ad50b109be3d4161a7 /hw/pxa2xx_keypad.c | |
parent | hw/arm_boot.c: Make SMP boards specify address to poll in bootup loop (diff) | |
download | qemu-8c4ec5c0269bda18bb777a64b2008088d1c632dc.tar.gz qemu-8c4ec5c0269bda18bb777a64b2008088d1c632dc.tar.xz qemu-8c4ec5c0269bda18bb777a64b2008088d1c632dc.zip |
pxa2xx_keypad: fix unbalanced parenthesis.
Breakage introduced by me when ammending a previous patch, sorry.
Diffstat (limited to 'hw/pxa2xx_keypad.c')
-rw-r--r-- | hw/pxa2xx_keypad.c | 2 |
1 files changed, 1 insertions, 1 deletions
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)) { |