1*433d6423SLionel Sambuc #ifndef _BSP_INTR_H_ 2*433d6423SLionel Sambuc #define _BSP_INTR_H_ 3*433d6423SLionel Sambuc 4*433d6423SLionel Sambuc #ifndef __ASSEMBLY__ 5*433d6423SLionel Sambuc 6*433d6423SLionel Sambuc void bsp_irq_unmask(int irq); 7*433d6423SLionel Sambuc void bsp_irq_mask(int irq); 8*433d6423SLionel Sambuc void bsp_irq_handle(void); 9*433d6423SLionel Sambuc 10*433d6423SLionel Sambuc #endif /* __ASSEMBLY__ */ 11*433d6423SLionel Sambuc 12*433d6423SLionel Sambuc #endif /* _BSP_INTR_H_ */ 13