uart: ns16550: place header in correct spot

This is an application facing define, specific to this
driver, for the public uart_drv_cmd() API. Put it with
public headers.

Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
This commit is contained in:
Andrew Boie 2019-02-22 13:03:38 -08:00 committed by Anas Nashif
commit 743677d743
2 changed files with 2 additions and 2 deletions

View file

@ -38,7 +38,7 @@
#include <pci/pci_mgr.h>
#endif /* CONFIG_PCI */
#include "uart_ns16550.h"
#include <drivers/serial/uart_ns16550.h>
/* register definitions */

View file

@ -5,7 +5,7 @@
*/
/**
* @file Header file for the NS16550 UART
* Header file for the NS16550 UART
*/
#ifndef ZEPHYR_DRIVERS_SERIAL_UART_NS16550_H_