summaryrefslogtreecommitdiff
path: root/src/include/smp/node.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/smp/node.h')
-rw-r--r--src/include/smp/node.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/include/smp/node.h b/src/include/smp/node.h
new file mode 100644
index 0000000000..4e45c46bd9
--- /dev/null
+++ b/src/include/smp/node.h
@@ -0,0 +1,10 @@
+#ifndef _SMP_NODE_H_
+#define _SMP_NODE_H_
+
+#if CONFIG_SMP
+int boot_cpu(void);
+#else
+#define boot_cpu(x) 1
+#endif
+
+#endif /* _SMP_NODE_H_ */