treewide: use full path to console/uart_pipe.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:34:54 -06:00 committed by Carles Cufí
commit 6a964663b1
5 changed files with 5 additions and 5 deletions

View file

@ -27,7 +27,7 @@ LOG_MODULE_REGISTER(net_ppp, LOG_LEVEL);
#include <net/net_pkt.h>
#include <net/net_if.h>
#include <net/net_core.h>
#include <console/uart_pipe.h>
#include <drivers/console/uart_pipe.h>
#include <sys/crc.h>
#include "../../subsys/net/ip/net_stats.h"

View file

@ -31,7 +31,7 @@ LOG_MODULE_REGISTER(LOG_MODULE_NAME);
#include <net/net_if.h>
#include <net/net_core.h>
#include <net/dummy.h>
#include <console/uart_pipe.h>
#include <drivers/console/uart_pipe.h>
#define SLIP_END 0300
#define SLIP_ESC 0333