Blame view

kernel/linux-rt-4.4.41/arch/powerpc/platforms/85xx/mpc85xx.h 469 Bytes
5113f6f70   김현기   kernel add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  #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 */
  
  #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
  
  #endif