mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
Blackfin: bf54x: don't ack GPIO ints when unmasking them
When unmasking a GPIO interrupt on a BF54x part, the code will implicitly ack any pending interrupts. This is not what unmasking should do and can cause people to miss interrupts from their devices, so punt the code. Reported-by: Rutger Hofman <rutger@cs.vu.nl> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
parent
25f3ff2c44
commit
b66acb63f5
1 changed files with 0 additions and 1 deletions
|
@ -866,7 +866,6 @@ static void bfin_gpio_unmask_irq(unsigned int irq)
|
|||
u32 pintbit = PINT_BIT(pint_val);
|
||||
u32 bank = PINT_2_BANK(pint_val);
|
||||
|
||||
pint[bank]->request = pintbit;
|
||||
pint[bank]->mask_set = pintbit;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue