console: Put the public API header in the right location
Only moving the header from drivers/console/uart_console.h to include/drivers/console/uart_console.h so source file did not need to be changed, only the defs.objs files to look into include/drivers/console. Change-Id: I585e16b50d9ffecf01ca9225e80f0e101f62ee4c Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com> Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
4694dae214
commit
ae09a48a7e
|
@ -34,6 +34,7 @@ bsp_INCLUDE_DIR = $(strip \
|
|||
${vBASE}/kernel/common/bsp \
|
||||
${vBASE}/include/bsp \
|
||||
${vBASE}/include \
|
||||
${vBASE}/include/drivers \
|
||||
${vBASE}/drivers \
|
||||
${vBASE}/arch/${vARCH} \
|
||||
${vBSP_BASE_DIR}/${vBSP} \
|
||||
|
|
|
@ -259,7 +259,7 @@ static void clkInit(void)
|
|||
*
|
||||
*/
|
||||
|
||||
#include "console/uart_console.h"
|
||||
#include <console/uart_console.h>
|
||||
|
||||
static void consoleInit(void)
|
||||
{
|
||||
|
|
|
@ -34,6 +34,7 @@ bsp_INCLUDE_DIR = $(strip \
|
|||
${vBASE}/kernel/common/bsp \
|
||||
${vBASE}/include/bsp \
|
||||
${vBASE}/include \
|
||||
${vBASE}/include/drivers \
|
||||
${vBASE}/arch/${vARCH} \
|
||||
${vBASE}/drivers \
|
||||
${vBSP_BASE_DIR}/${vBSP} \
|
||||
|
|
|
@ -34,6 +34,7 @@ bsp_INCLUDE_DIR = $(strip \
|
|||
${vBASE}/kernel/common/bsp \
|
||||
${vBASE}/include/bsp \
|
||||
${vBASE}/include \
|
||||
${vBASE}/include/drivers \
|
||||
${vBASE}/drivers \
|
||||
${vBASE}/arch/${vARCH} \
|
||||
${vBSP_BASE_DIR}/${vBSP} \
|
||||
|
|
|
@ -35,6 +35,7 @@ bsp_INCLUDE_DIR = $(strip \
|
|||
${vBASE}/arch/${vARCH} \
|
||||
${vBASE}/include/bsp \
|
||||
${vBASE}/include \
|
||||
${vBASE}/include/drivers \
|
||||
${vBASE}/drivers \
|
||||
${vBSP_BASE_DIR}/${vBSP} \
|
||||
)
|
||||
|
|
|
@ -46,7 +46,7 @@
|
|||
|
||||
#include <board.h>
|
||||
#include <drivers/uart.h>
|
||||
#include "console/uart_console.h"
|
||||
#include <console/uart_console.h>
|
||||
#include <toolchain.h>
|
||||
#include <sections.h>
|
||||
|
||||
|
|
Loading…
Reference in a new issue