From a19f6629bb1f67eab5fb8bf2eed7be1016d489ef Mon Sep 17 00:00:00 2001 From: Kumar Gala Date: Wed, 26 Jul 2017 11:34:35 -0500 Subject: [PATCH] scripts/extract_dts_includes.py: Fix typo in device name list For CONFIG_UART_PIPE_ON_DEV_NAME the chosen property is "zephyr,uart-pipe" not ""zephyr,bt-mon-uart". Signed-off-by: Kumar Gala --- scripts/extract_dts_includes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/extract_dts_includes.py b/scripts/extract_dts_includes.py index 2f564bbf4f1..ad46963ce9e 100755 --- a/scripts/extract_dts_includes.py +++ b/scripts/extract_dts_includes.py @@ -781,7 +781,7 @@ def main(): name_dict = { "CONFIG_UART_CONSOLE_ON_DEV_NAME": "zephyr,console", "CONFIG_BLUETOOTH_UART_ON_DEV_NAME": "zephyr,bt-uart", - "CONFIG_UART_PIPE_ON_DEV_NAME": "zephyr,bt-mon-uart", + "CONFIG_UART_PIPE_ON_DEV_NAME": "zephyr,uart-pipe", "CONFIG_BLUETOOTH_MONITOR_ON_DEV_NAME": "zephyr,bt-mon-uart" }