Lines Matching refs:girq
241 struct gpio_irq_chip *girq; in altera_gpio_probe() local
288 girq = &altera_gc->mmchip.gc.irq; in altera_gpio_probe()
289 girq->chip = &altera_gc->irq_chip; in altera_gpio_probe()
291 girq->parent_handler = altera_gpio_irq_leveL_high_handler; in altera_gpio_probe()
293 girq->parent_handler = altera_gpio_irq_edge_handler; in altera_gpio_probe()
294 girq->num_parents = 1; in altera_gpio_probe()
295 girq->parents = devm_kcalloc(&pdev->dev, 1, sizeof(*girq->parents), in altera_gpio_probe()
297 if (!girq->parents) in altera_gpio_probe()
299 girq->default_type = IRQ_TYPE_NONE; in altera_gpio_probe()
300 girq->handler = handle_bad_irq; in altera_gpio_probe()
301 girq->parents[0] = altera_gc->mapped_irq; in altera_gpio_probe()