Forum Discussion
Altera_Forum
Honored Contributor
21 years agoProblem with IRQs and kernel modules
Hello all! Functions request_irq and free_irq don't seem to be available to the installable kernel modules, trying to insmod a module using those functions will fail with unresolved symbol ...
Altera_Forum
Honored Contributor
21 years agoHi Tervis,
You can export those two symbols by adding the following to the end of the file arch/nios2nommu/kernel/irq.c.EXPORT_SYMBOL(request_irq);
EXPORT_SYMBOL(free_irq); Regards, wentao