blob: afa2ee6717c149309b8aa7ad53226f64048a0605 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _PPC_KERNEL_MPC8xx_H
#define _PPC_KERNEL_MPC8xx_H
#include <linux/irq.h>
#include <linux/interrupt.h>
extern struct hw_interrupt_type mpc8xx_pic;
int mpc8xx_pic_init(void);
unsigned int mpc8xx_get_irq(void);
#endif /* _PPC_KERNEL_PPC8xx_H */
|