free_irq(9) centos man page | unix.com

Man Page: free_irq

Operating Environment: centos

Section: 9

FREE_IRQ(9)						     Public Functions Provided						       FREE_IRQ(9)

NAME
free_irq - free an interrupt allocated with request_irq
SYNOPSIS
void free_irq(unsigned int irq, void * dev_id);
ARGUMENTS
irq Interrupt line to free dev_id Device identity to free
DESCRIPTION
Remove an interrupt handler. The handler is removed and if the interrupt line is no longer in use by any driver it is disabled. On a shared IRQ the caller must ensure the interrupt is disabled on the card it drives before calling this function. The function does not return until any executing interrupts for this IRQ have completed. This function must not be called from interrupt context.
AUTHORS
Thomas Gleixner <tglx@linutronix.de> Author. Ingo Molnar <mingo@elte.hu> Author.
COPYRIGHT
Kernel Hackers Manual 3.10 June 2014 FREE_IRQ(9)
Related Man Pages
ccw_device_start_timeout_key(9) - centos
ccw_device_start_timeout(9) - centos
struct_irq_chip_generic(9) - centos
bus_describe_intr(9) - freebsd
tapset::irq(3stap) - debian
Similar Topics in the Unix Linux Community
Doubt with irq handler.......
request_irq always returns EINVAL