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:
Tomasz Bursztyka 2015-04-23 13:12:51 +03:00 committed by Anas Nashif
parent 4694dae214
commit ae09a48a7e
7 changed files with 6 additions and 2 deletions

View file

@ -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} \

View file

@ -259,7 +259,7 @@ static void clkInit(void)
*
*/
#include "console/uart_console.h"
#include <console/uart_console.h>
static void consoleInit(void)
{

View file

@ -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} \

View file

@ -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} \

View file

@ -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} \
)

View file

@ -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>