Lines Matching full:chip
66 * struct irq_chip - hardware interrupt chip descriptor
71 * @enable: enable the interrupt (defaults to chip->unmask if NULL)
72 * @disable: disable the interrupt (defaults to chip->mask if NULL)
77 * @eoi: end of interrupt - chip level
121 * @chip: low level interrupt hardware access
123 * @chip_data: platform-specific per-chip private data for the chip
124 * methods, to allow shared chip implementations
145 struct irq_chip *chip;
293 * callable via desc->chip->handle_irq()
357 /* Dummy irq-chip implementations: */
362 set_irq_chip_and_handler(unsigned int irq, struct irq_chip *chip,
396 /* Set/get chip/data for an IRQ: */
398 extern int set_irq_chip(unsigned int irq, struct irq_chip *chip);
403 #define get_irq_chip(irq) (irq_desc[irq].chip)