d0a02a06bc
m8xx_pic_init calls both mpc8xx_pic_init and cpm_pic_init. Renaming the function to use the same name space as the rest of the mpc8xx specific funtions and to be more meaningful. m8xx_pic_init is declared in ppc8xx_pic.h but defined nowhere in the ppc tree. Remove it. Signed-off-by: Jochen Friedrich <jochen@scram.de> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19 lines
446 B
C
19 lines
446 B
C
#ifndef _PPC_KERNEL_PPC8xx_H
|
|
#define _PPC_KERNEL_PPC8xx_H
|
|
|
|
#include <linux/irq.h>
|
|
#include <linux/interrupt.h>
|
|
|
|
extern struct hw_interrupt_type ppc8xx_pic;
|
|
|
|
void m8xx_do_IRQ(struct pt_regs *regs,
|
|
int cpu);
|
|
int m8xx_get_irq(struct pt_regs *regs);
|
|
|
|
#ifdef CONFIG_MBX
|
|
#include <asm/i8259.h>
|
|
#include <asm/io.h>
|
|
void mbx_i8259_action(int cpl, void *dev_id, struct pt_regs *regs);
|
|
#endif
|
|
|
|
#endif /* _PPC_KERNEL_PPC8xx_H */
|