mirror of https://github.com/xqemu/xqemu.git
pxa2xx_keypad: fix unbalanced parenthesis.
Breakage introduced by me when ammending a previous patch, sorry.
This commit is contained in:
parent
078758d074
commit
8c4ec5c026
|
@ -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)) {
|
||||
|
|
Loading…
Reference in New Issue