Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef MPC85xx_H
0003 #define MPC85xx_H
0004 extern int mpc85xx_common_publish_devices(void);
0005 
0006 #ifdef CONFIG_CPM2
0007 extern void mpc85xx_cpm2_pic_init(void);
0008 #else
0009 static inline void __init mpc85xx_cpm2_pic_init(void) {}
0010 #endif /* CONFIG_CPM2 */
0011 
0012 #ifdef CONFIG_QUICC_ENGINE
0013 extern void mpc85xx_qe_par_io_init(void);
0014 #else
0015 static inline void __init mpc85xx_qe_par_io_init(void) {}
0016 #endif
0017 
0018 #endif