1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-20 22:48:10 +02:00
openwrt/target/linux/bcm63xx/patches-5.10/324-irqchip-bcm6345-periph-fix-block-uninitialized.patch
Álvaro Fernández Rojas f323dec4f8 bcm63xx: add kernel 5.10 support
Runtime-tested on Comtrend AR-5387un.

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
2021-02-17 20:40:16 +01:00

21 lines
705 B
Diff

--- a/drivers/irqchip/irq-bcm6345-periph.c
+++ b/drivers/irqchip/irq-bcm6345-periph.c
@@ -52,7 +52,7 @@ static void bcm6345_periph_irq_handle(st
{
struct intc_data *data = irq_desc_get_handler_data(desc);
struct irq_chip *chip = irq_desc_get_chip(desc);
- struct intc_block *block;
+ struct intc_block *block = NULL;
unsigned int irq = irq_desc_get_irq(desc);
unsigned int idx;
@@ -62,7 +62,7 @@ static void bcm6345_periph_irq_handle(st
if (irq == data->block[idx].parent_irq)
block = &data->block[idx];
- for (idx = 0; idx < data->num_words; idx++) {
+ for (idx = 0; block && idx < data->num_words; idx++) {
int base = idx * IRQS_PER_WORD;
unsigned long pending;
int hw_irq;