Home
last modified time | relevance | path

Searched refs:pending_irq (Results 1 – 3 of 3) sorted by relevance

/linux/drivers/irqchip/
H A Dirq-sp7021-intc.c152 u32 pending_irq; in sp_intc_get_ext_irq() local
160 pending_irq = readl_relaxed(base + group * 4); in sp_intc_get_ext_irq()
161 if (!pending_irq) in sp_intc_get_ext_irq()
164 return (group * 32) + fls(pending_irq) - 1; in sp_intc_get_ext_irq()
/linux/drivers/pinctrl/actions/
H A Dpinctrl-owl.c856 unsigned long pending_irq; in owl_gpio_irq_handler() local
868 pending_irq = readl_relaxed(base + port->intc_pd); in owl_gpio_irq_handler()
870 for_each_set_bit(pin, &pending_irq, port->pins) { in owl_gpio_irq_handler()
/linux/kernel/events/
H A Dring_buffer.c29 irq_work_queue(&handle->event->pending_irq); in perf_output_wakeup()