Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v2.6.18-rc7 16 lines 434 B view raw
1#ifndef _ASM_POWERPC_I8259_H 2#define _ASM_POWERPC_I8259_H 3#ifdef __KERNEL__ 4 5#include <linux/irq.h> 6 7#ifdef CONFIG_PPC_MERGE 8extern void i8259_init(struct device_node *node, unsigned long intack_addr); 9extern unsigned int i8259_irq(struct pt_regs *regs); 10#else 11extern void i8259_init(unsigned long intack_addr, int offset); 12extern int i8259_irq(struct pt_regs *regs); 13#endif 14 15#endif /* __KERNEL__ */ 16#endif /* _ASM_POWERPC_I8259_H */