Lines Matching full:handler
18 * @handler: Function to be called when the IRQ occurs.
19 * Primary handler for threaded interrupts.
20 * If NULL and thread_fn != NULL the default primary handler is
22 * @thread_fn: Function called from the IRQ handler thread
24 * @dev_id: Cookie passed back to the handler function
25 * @fmt: Printf-like format string naming the handler
28 * IRQ handling. From the point this call is made @handler and @thread_fn may
33 int pci_request_irq(struct pci_dev *dev, unsigned int nr, irq_handler_t handler, in pci_request_irq() argument
41 if (!handler) in pci_request_irq()
50 ret = request_threaded_irq(pci_irq_vector(dev, nr), handler, thread_fn, in pci_request_irq()
64 * Remove an interrupt handler. The handler is removed and if the interrupt