make vfs & filesystems use failable copying
[minix3.git] / kernel / arch / earm / hw_intr.c
blob8e97a61f9a3d93eee49048278fca27bf9d217948
1 /* hw_intr handles the hardware dependent part of the interrupts */
2 #include "hw_intr.h"
3 #include "bsp_intr.h"
5 int hw_intr_mask(int irq){
6 bsp_irq_mask(irq);
9 int hw_intr_unmask(int irq){
10 bsp_irq_unmask(irq);
13 int hw_intr_ack(int irq){};
14 int hw_intr_used(int irq){};
15 int hw_intr_not_used(int irq){};
16 int hw_intr_disable_all(){};