blob: 787e9f8851c7681ea6618b5b509852b4a22b2bbb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* 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(void){};
|