summaryrefslogtreecommitdiff
path: root/src/include/smp/node.h
blob: 65931bc404183c0962501d3a2a8d8483a4292a31 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef _SMP_NODE_H_
#define _SMP_NODE_H_

#if IS_ENABLED(CONFIG_SMP)
int boot_cpu(void);
#else
#define boot_cpu(x) 1
#endif

#endif /* _SMP_NODE_H_ */