Remove an unnecessary (and incorrect) factor in conditional compilation

This commit is contained in:
Gregory Nutt 2016-07-03 15:26:27 -06:00
parent 83b0e85081
commit 88f1f42677
2 changed files with 4 additions and 4 deletions

View File

@ -45,7 +45,7 @@
#include "sabre-6quad.h"
#if defined(CONFIG_LIB_BOARDCTL) && !defined(CONFIG_BUILD_KERNEL)
#ifdef CONFIG_LIB_BOARDCTL
/****************************************************************************
* Public Functions
@ -87,4 +87,4 @@ int board_app_initialize(uintptr_t arg)
#endif
}
#endif /* CONFIG_LIB_BOARDCTL && !CONFIG_BUILD_KERNEL */
#endif /* CONFIG_LIB_BOARDCTL */

View File

@ -45,7 +45,7 @@
#include "same70-xplained.h"
#if defined(CONFIG_LIB_BOARDCTL) && !defined(CONFIG_BUILD_KERNEL)
#ifdef CONFIG_LIB_BOARDCTL
/****************************************************************************
* Public Functions
@ -87,4 +87,4 @@ int board_app_initialize(uintptr_t arg)
#endif
}
#endif /* CONFIG_LIB_BOARDCTL && !CONFIG_BUILD_KERNEL */
#endif /* CONFIG_LIB_BOARDCTL */