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