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>
13 lines
373 B
C
13 lines
373 B
C
#ifndef _POWERPC_SYSDEV_COMMPROC_H
|
|
#define _POWERPC_SYSDEV_COMMPROC_H
|
|
|
|
extern void cpm_reset(void);
|
|
extern void mpc8xx_restart(char *cmd);
|
|
extern void mpc8xx_calibrate_decr(void);
|
|
extern int mpc8xx_set_rtc_time(struct rtc_time *tm);
|
|
extern void mpc8xx_get_rtc_time(struct rtc_time *tm);
|
|
extern void mpc8xx_pics_init(void);
|
|
extern unsigned int mpc8xx_get_irq(void);
|
|
|
|
#endif
|