mpc85xx.h 469 B

12345678910111213141516171819
  1. #ifndef MPC85xx_H
  2. #define MPC85xx_H
  3. extern int mpc85xx_common_publish_devices(void);
  4. #ifdef CONFIG_CPM2
  5. extern void mpc85xx_cpm2_pic_init(void);
  6. #else
  7. static inline void __init mpc85xx_cpm2_pic_init(void) {}
  8. #endif /* CONFIG_CPM2 */
  9. #ifdef CONFIG_QUICC_ENGINE
  10. extern void mpc85xx_qe_init(void);
  11. extern void mpc85xx_qe_par_io_init(void);
  12. #else
  13. static inline void __init mpc85xx_qe_init(void) {}
  14. static inline void __init mpc85xx_qe_par_io_init(void) {}
  15. #endif
  16. #endif