#include "lynq-irq.h" | |
#include "mbtk_type.h" | |
int lynq_irq_install(int line, irq_handler irq_test_handler, int trig_type) | |
{ | |
UNUSED(line); | |
UNUSED(irq_test_handler); | |
UNUSED(trig_type); | |
return 0; | |
} | |
int lynq_irq_unstall(int line) | |
{ | |
UNUSED(line); | |
return 0; | |
} | |
int lynq_irq_set_type(int line, int trig_type) | |
{ | |
UNUSED(line); | |
UNUSED(trig_type); | |
return 0; | |
} | |
int lynq_set_wake(int line, int en) | |
{ | |
UNUSED(line); | |
UNUSED(en); | |
return 0; | |
} | |
int lynq_irq_get_wake(int line) | |
{ | |
UNUSED(line); | |
return 0; | |
} | |