OpenCloudOS-Kernel/arch/powerpc/platforms/powernv/powernv.h

17 lines
275 B
C

#ifndef _POWERNV_H
#define _POWERNV_H
#ifdef CONFIG_SMP
extern void pnv_smp_init(void);
#else
static inline void pnv_smp_init(void) { }
#endif
#ifdef CONFIG_PCI
extern void pnv_pci_init(void);
#else
static inline void pnv_pci_init(void) { }
#endif
#endif /* _POWERNV_H */