mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 05:02:12 +00:00
543a07b173
Separate handling of CPM2 PIC initialization to mpc85xx_cpm2_pic_init() function. Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
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
|