request_irq()

Creator
Creator
Seonglae ChoSeonglae Cho
Created
Created
2023 Oct 11 7:36
Editor
Edited
Edited
2023 Oct 24 16:19
Refs
Refs

Allocate an interrupt line by invoking request_irq()

Parameter irq

specifies the interrupt number to allocate
 

Parameter handler

function pointer to the interrupt handler
 

Parameter irqflags

  • SA_SHIRQ: interrupt is shared
  • SA_INTERRUPT: disable local interrupts while processing
 
 
 
 
 
 
 

Recommendations