The Zephyr configuration system uses many different files in many different formats. It makes it a lot easier for users to understand what these files do if when we use the correct file extensions. To this end we rename the dts.fixup files to the correct file extension '.h'. This is a breaking change for out-of-tree fixup files. Such files will be detected and given an appropriate error message. Signed-off-by: Sebastian Bøe <sebastian.boe@nordicsemi.no>
16 lines
504 B
C
16 lines
504 B
C
/*
|
|
* Copyright (c) 2018, Linaro Limited
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/* SoC level DTS fixup file */
|
|
|
|
/*
|
|
* UART configuration
|
|
*/
|
|
#define CONFIG_UART_NS16550_PORT_0_BASE_ADDR NS16550_1A100000_BASE_ADDRESS
|
|
#define CONFIG_UART_NS16550_PORT_0_IRQ NS16550_1A100000_IRQ_0
|
|
#define CONFIG_UART_NS16550_PORT_0_CLK_FREQ NS16550_1A100000_CLOCK_FREQUENCY
|
|
#define CONFIG_UART_NS16550_PORT_0_BAUD_RATE NS16550_1A100000_CURRENT_SPEED
|
|
#define CONFIG_UART_NS16550_PORT_0_NAME NS16550_1A100000_LABEL
|