mirror of https://gitee.com/openkylin/linux.git
10 lines
192 B
C
10 lines
192 B
C
|
#ifndef MPC85xx_H
|
||
|
#define MPC85xx_H
|
||
|
#ifdef CONFIG_CPM2
|
||
|
extern void mpc85xx_cpm2_pic_init(void);
|
||
|
#else
|
||
|
static inline void __init mpc85xx_cpm2_pic_init(void) {}
|
||
|
#endif /* CONFIG_CPM2 */
|
||
|
|
||
|
#endif
|