5a5c886b8d
We should not have x86 specific includes in lib/. Change-Id: I18fa9c8017d65c166ffd465038d71f35b30d6f3d Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/5156 Tested-by: build bot (Jenkins) Reviewed-by: David Hendricks <dhendrix@chromium.org> Reviewed-by: Aaron Durbin <adurbin@google.com>
10 lines
140 B
C
10 lines
140 B
C
#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_ */
|