aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/platforms/powernv/powernv.h
blob: de6819be1f95ea11911bbadd5080fb05db66e884 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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);
extern void pnv_pci_shutdown(void);
#else
static inline void pnv_pci_init(void) { }
static inline void pnv_pci_shutdown(void) { }
#endif

extern void pnv_lpc_init(void);

#endif /* _POWERNV_H */