CONFIG_ENABLE_SMP_SUPPORT has the correct namespace for a kernel config option. Signed-off-by: Kent McLeod <kent@kry10.com>
14 lines
266 B
C
14 lines
266 B
C
/*
|
|
* Copyright 2020, Data61, CSIRO (ABN 41 687 119 230)
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-only
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <sel4/config.h>
|
|
|
|
/* Set ENABLE_SMP_SUPPORT for kernel source files */
|
|
#ifdef CONFIG_ENABLE_SMP_SUPPORT
|
|
#define ENABLE_SMP_SUPPORT
|
|
#endif
|