Structure for IRQ handler.
Definition sys-intc.h:26
void * data
Definition sys-intc.h:27
void(* func)(void *data)
Definition sys-intc.h:28
void irq_install_handler(int irq, interrupt_handler_t handle_irq, void *data)
Installs a handler for the specified IRQ.
Definition sys-clic.c:187
int irq_disable(int irq_no)
Disables the specified IRQ.
Definition sys-clic.c:178
int irq_enable(int irq_no)
Enables the specified IRQ.
Definition sys-clic.c:169
struct _irq_handler irq_handler_t
Structure for IRQ handler.
void irq_free_handler(int irq)
Frees the resources associated with the specified IRQ handler.
Definition sys-clic.c:161
void() interrupt_handler_t(void *)
Type definition for interrupt handler function.
Definition sys-intc.h:36