Lines Matching refs:girq
184 u32 n, girq;
193 girq = irq_find_mapping(chip->irq.domain, n);
194 generic_handle_irq(girq);
204 struct gpio_irq_chip *girq;
256 girq = &rda_gpio->chip.irq;
257 girq->chip = &rda_gpio->irq_chip;
258 girq->handler = handle_bad_irq;
259 girq->default_type = IRQ_TYPE_NONE;
260 girq->parent_handler = rda_gpio_irq_handler;
261 girq->parent_handler_data = rda_gpio;
262 girq->num_parents = 1;
263 girq->parents = devm_kcalloc(dev, 1,
264 sizeof(*girq->parents),
266 if (!girq->parents)
268 girq->parents[0] = rda_gpio->irq;