xtensa: unbalanced parentheses
Signed-off-by: Nicolas Kaiser <nikai@nikai.net> Signed-off-by: Chris Zankel <chris@zankel.net>
This commit is contained in:
parent
09378d7c21
commit
02b25d811f
|
@ -164,7 +164,7 @@ static void demux_irqs(unsigned int irq, struct irq_desc *desc)
|
||||||
int cirq;
|
int cirq;
|
||||||
|
|
||||||
chip->irq_mask(&desc->irq_data);
|
chip->irq_mask(&desc->irq_data);
|
||||||
chip->irq_ack(&desc->irq_data));
|
chip->irq_ack(&desc->irq_data);
|
||||||
pending = readb(S6_REG_GPIO + S6_GPIO_BANK(0) + S6_GPIO_MIS) & *mask;
|
pending = readb(S6_REG_GPIO + S6_GPIO_BANK(0) + S6_GPIO_MIS) & *mask;
|
||||||
cirq = IRQ_BASE - 1;
|
cirq = IRQ_BASE - 1;
|
||||||
while (pending) {
|
while (pending) {
|
||||||
|
@ -173,7 +173,7 @@ static void demux_irqs(unsigned int irq, struct irq_desc *desc)
|
||||||
pending >>= n;
|
pending >>= n;
|
||||||
generic_handle_irq(cirq);
|
generic_handle_irq(cirq);
|
||||||
}
|
}
|
||||||
chip->irq_unmask(&desc->irq_data));
|
chip->irq_unmask(&desc->irq_data);
|
||||||
}
|
}
|
||||||
|
|
||||||
extern const signed char *platform_irq_mappings[XTENSA_NR_IRQS];
|
extern const signed char *platform_irq_mappings[XTENSA_NR_IRQS];
|
||||||
|
|
Loading…
Reference in New Issue