Lines Matching refs:girq
276 struct gpio_irq_chip *girq; in hlwd_gpio_probe() local
285 girq = &hlwd->gpioc.irq; in hlwd_gpio_probe()
286 gpio_irq_chip_set_chip(girq, &hlwd_gpio_irq_chip); in hlwd_gpio_probe()
287 girq->parent_handler = hlwd_gpio_irqhandler; in hlwd_gpio_probe()
288 girq->num_parents = 1; in hlwd_gpio_probe()
289 girq->parents = devm_kcalloc(&pdev->dev, 1, in hlwd_gpio_probe()
290 sizeof(*girq->parents), in hlwd_gpio_probe()
292 if (!girq->parents) in hlwd_gpio_probe()
294 girq->parents[0] = hlwd->irq; in hlwd_gpio_probe()
295 girq->default_type = IRQ_TYPE_NONE; in hlwd_gpio_probe()
296 girq->handler = handle_level_irq; in hlwd_gpio_probe()