xref: /minix/minix/kernel/arch/earm/hw_intr.c (revision 9f988b79)
1 /* hw_intr handles the hardware dependent part of the interrupts */
2 #include "hw_intr.h"
3 #include "bsp_intr.h"
4 
5 void hw_intr_mask(int irq){
6 	bsp_irq_mask(irq);
7 }
8 
9 void hw_intr_unmask(int irq){
10 	bsp_irq_unmask(irq);
11 }
12 
13 void hw_intr_ack(int irq){};
14 void hw_intr_used(int irq){};
15 void hw_intr_not_used(int irq){};
16 void hw_intr_disable_all(){};
17