1 /*
2  * Copyright (c) 2015 Intel Corporation.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 /**
8  * @file
9  *
10  * @brief Public header file for the NS16550 UART
11  */
12 
13 #ifndef ZEPHYR_INCLUDE_DRIVERS_SERIAL_UART_NS16550_H_
14 #define ZEPHYR_INCLUDE_DRIVERS_SERIAL_UART_NS16550_H_
15 
16 /**
17  * @brief Set DLF
18  *
19  * @note This only applies to Synopsys Designware UART IP block.
20  */
21 #define CMD_SET_DLF	0x01
22 
23 #endif /* ZEPHYR_INCLUDE_DRIVERS_SERIAL_UART_NS16550_H_ */
24