treewide: use full path to uart.h header

The build infrastructure should not be adding the drivers subdirectory
to the include path.  Fix the legacy uses that depended on that
addition.

Signed-off-by: Peter Bigot <peter.bigot@nordicsemi.no>
This commit is contained in:
Peter Bigot 2020-01-25 05:35:02 -06:00 committed by Carles Cufí
parent 5ceb612738
commit 02ae343100
4 changed files with 4 additions and 4 deletions

View file

@ -29,7 +29,7 @@
#include <init.h>
#include <toolchain.h>
#include <linker/sections.h>
#include <uart.h>
#include <drivers/uart.h>
#include <sys/sys_io.h>
#define XUARTPS_CR_OFFSET 0x0000U /**< Control Register [8:0] */

View file

@ -15,7 +15,7 @@
#include <logging/log.h>
LOG_MODULE_REGISTER(wpan_serial, CONFIG_USB_DEVICE_LOG_LEVEL);
#include <uart.h>
#include <drivers/uart.h>
#include <zephyr.h>
#include <net/buf.h>

View file

@ -19,7 +19,7 @@
#include <device.h>
#include <init.h>
#include <soc.h>
#include <uart.h>
#include <drivers/uart.h>
#include <fsl_common.h>
#include <fsl_clock.h>
#include <arch/cpu.h>

View file

@ -8,7 +8,7 @@
#include <device.h>
#include <console/console.h>
#include <console/tty.h>
#include <uart.h>
#include <drivers/uart.h>
static struct tty_serial console_serial;