
. fixes needed to build Minix/ARM with LLVM without errors, mostly size_t cleanness Change-Id: If4dd0a23bc5cb399296073920a8940c34b4caef4
17 lines
341 B
C
17 lines
341 B
C
/* hw_intr handles the hardware dependent part of the interrupts */
|
|
#include "hw_intr.h"
|
|
#include "bsp_intr.h"
|
|
|
|
void hw_intr_mask(int irq){
|
|
bsp_irq_mask(irq);
|
|
}
|
|
|
|
void hw_intr_unmask(int irq){
|
|
bsp_irq_unmask(irq);
|
|
}
|
|
|
|
void hw_intr_ack(int irq){};
|
|
void hw_intr_used(int irq){};
|
|
void hw_intr_not_used(int irq){};
|
|
void hw_intr_disable_all(){};
|