blob: ea637365e94867d2bfb138b42b06375f912021d2 [file] [log] [blame]
#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;
}