From cdc78108d50c6c2a5fab9e51780dd14ba9897a79 Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Fri, 21 Jun 2019 13:30:27 -0400 Subject: [PATCH] drivers: serial: ns16550: move header from /include/ Move ns16550 to the driver directory. No other users in the tree and it is a private header. Signed-off-by: Anas Nashif --- drivers/serial/uart_ns16550.c | 2 +- {include/drivers => drivers}/serial/uart_ns16550.h | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename {include/drivers => drivers}/serial/uart_ns16550.h (100%) diff --git a/drivers/serial/uart_ns16550.c b/drivers/serial/uart_ns16550.c index e9a3724b258..1601a1b5790 100644 --- a/drivers/serial/uart_ns16550.c +++ b/drivers/serial/uart_ns16550.c @@ -32,7 +32,7 @@ #include #include -#include +#include "uart_ns16550.h" /* * If PCP is set for any of the ports, enable support. diff --git a/include/drivers/serial/uart_ns16550.h b/drivers/serial/uart_ns16550.h similarity index 100% rename from include/drivers/serial/uart_ns16550.h rename to drivers/serial/uart_ns16550.h