2024-09-09 08:52:07 +00:00
|
|
|
#ifndef MPC85xx_H
|
|
|
|
#define MPC85xx_H
|
|
|
|
extern int mpc85xx_common_publish_devices(void);
|
|
|
|
|
|
|
|
#ifdef CONFIG_CPM2
|
|
|
|
extern void mpc85xx_cpm2_pic_init(void);
|
|
|
|
#else
|
|
|
|
static inline void __init mpc85xx_cpm2_pic_init(void) {}
|
|
|
|
#endif /* CONFIG_CPM2 */
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
#ifdef CONFIG_QUICC_ENGINE
|
|
|
|
extern void mpc85xx_qe_init(void);
|
|
|
|
extern void mpc85xx_qe_par_io_init(void);
|
|
|
|
#else
|
|
|
|
static inline void __init mpc85xx_qe_init(void) {}
|
|
|
|
static inline void __init mpc85xx_qe_par_io_init(void) {}
|
|
|
|
#endif
|
|
|
|
|
2024-09-09 08:52:07 +00:00
|
|
|
#endif
|