Remove building with NOCRYPTO option
[minix3.git] / minix / kernel / arch / earm / hw_intr.c
blob787e9f8851c7681ea6618b5b509852b4a22b2bbb
1 /* hw_intr handles the hardware dependent part of the interrupts */
2 #include "hw_intr.h"
3 #include "bsp_intr.h"
5 void hw_intr_mask(int irq){
6 bsp_irq_mask(irq);
9 void hw_intr_unmask(int irq){
10 bsp_irq_unmask(irq);
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(void){};