We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95e54fa commit ea3be86Copy full SHA for ea3be86
recipes-kernel/kernel-modules/x8h7/x8h7_gpio.c
@@ -376,20 +376,20 @@ static void x8h7_gpio_irq_bus_sync_unlock(struct irq_data *d)
376
unsigned long irq;
377
378
DBG_PRINT("\n");
379
+
380
irq = irqd_to_hwirq(d);
381
382
// Send interrupt type
383
data[0] = irq;
384
data[1] = inf->irq_conf;
385
x8h7_pkt_enq(X8H7_GPIO_PERIPH, X8H7_GPIO_OC_IRQ_TYPE, 2, data);
- x8h7_pkt_send();
386
387
// Send mask
388
389
data[1] = inf->gpio_ien;
390
x8h7_pkt_enq(X8H7_GPIO_PERIPH, X8H7_GPIO_OC_IEN, 2, data);
391
392
+ x8h7_pkt_send();
393
mutex_unlock(&inf->lock);
394
}
395
0 commit comments