minix/kernel/arch/earm/include/hw_intr.h
Lionel Sambuc b1c4ba4ab6 ARM updates
Due to the ABI we are using we have to use the earm architecture
moniker for the build system to behave correctly. This involves
then some headers to move around.

There is also a few related Makefile updates as well as minor
source code corrections.
2013-01-17 10:03:58 +01:00

15 lines
346 B
C

#ifndef __HW_INTR_ARM_H__
#define __HW_INTR_ARM_H__
#include "kernel/kernel.h"
void irq_handle(int irq);
#define hw_intr_mask(irq) omap3_irq_mask(irq)
#define hw_intr_unmask(irq) omap3_irq_unmask(irq)
#define hw_intr_ack(irq)
#define hw_intr_used(irq)
#define hw_intr_not_used(irq)
#define hw_intr_disable_all()
#endif /* __HW_INTR_ARM_H__ */