mirror of
https://github.com/torvalds/linux.git
synced 2024-12-24 11:51:27 +00:00
11 lines
169 B
C
11 lines
169 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
|
||
|
|
||
|
#endif /* _POWERNV_H */
|