mpc85xx.h 422 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef MPC85xx_H
  3. #define MPC85xx_H
  4. extern int mpc85xx_common_publish_devices(void);
  5. #ifdef CONFIG_CPM2
  6. extern void mpc85xx_cpm2_pic_init(void);
  7. #else
  8. static inline void __init mpc85xx_cpm2_pic_init(void) {}
  9. #endif /* CONFIG_CPM2 */
  10. #ifdef CONFIG_QUICC_ENGINE
  11. extern void mpc85xx_qe_par_io_init(void);
  12. #else
  13. static inline void __init mpc85xx_qe_par_io_init(void) {}
  14. #endif
  15. #endif