root/arch/powerpc/platforms/85xx/mpc85xx.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


DEFINITIONS

This source file includes following definitions.
  1. mpc85xx_cpm2_pic_init
  2. mpc85xx_qe_init
  3. mpc85xx_qe_par_io_init

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

/* [<][>][^][v][top][bottom][index][help] */