zephyr/boards/nios2/qemu_nios2/qemu_nios2.dts
Kumar Gala e743104ad4 dts: Fix warning related to invalid alias name
Aliases are not suppose to use '_', so replace with '-'.

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
2018-11-16 13:57:45 -05:00

30 lines
384 B
Plaintext

/dts-v1/;
#include <nios2-qemu.dtsi>
/ {
model = "qemu_nios2";
compatible = "qemu,nios2";
aliases {
uart-0 = &jtag_uart;
uart-1 = &ns16550_uart;
};
chosen {
zephyr,sram = &sram0;
zephyr,flash = &flash0;
zephyr,console = &ns16550_uart;
};
};
&jtag_uart {
status = "ok";
current-speed = <115200>;
};
&ns16550_uart {
status = "ok";
current-speed = <115200>;
};