zephyr/tests/drivers/console_switching/boards/qemu_riscv64.overlay
Jordan Yates 243eb36b18 everywhere: reindent .overlay files with tabs
`checkpatch.pl` requires that dts sources are indented with tabs,
fix all the spaces that slipped in while checkpatch wasn't watching.

Signed-off-by: Jordan Yates <jordan@embeint.com>
2024-06-26 15:59:44 +02:00

39 lines
654 B
Text

/*
* Copyright (c) 2023, Meta
*
* SPDX-License-Identifier: Apache-2.0
*/
/ {
chosen {
zephyr,console = &devmux0;
zephyr,shell_uart = &devmux0;
};
euart0: uart_emul0 {
compatible = "zephyr,uart-emul";
current-speed = <0>;
status = "okay";
};
euart1: uart_emul1 {
compatible = "zephyr,uart-emul";
current-speed = <0>;
status = "okay";
};
devmux0: dev_mux_0 {
compatible = "zephyr,devmux";
devices = <&uart0 &euart0 &euart1>;
zephyr,mutable;
status = "okay";
};
devmux1: dev_mux_1 {
compatible = "zephyr,devmux";
devices = <&uart0 &euart0 &euart1>;
zephyr,mutable;
selected = <2>;
status = "okay";
};
};