@@ -20,12 +20,12 @@
compatible = "renesas,armadillo800eva", "renesas,r8a7740";
aliases {
- serial1 = &scifa1;
+ serial0 = &scifa1;
};
chosen {
- bootargs = "console=tty0 console=ttySC1,115200 earlyprintk=sh-sci.1,115200 ignore_loglevel root=/dev/nfs ip=dhcp rw";
- stdout-path = &scifa1;
+ bootargs = "earlyprintk ignore_loglevel root=/dev/nfs ip=dhcp rw";
+ stdout-path = "serial0:115200n8";
};
memory {
@@ -232,7 +232,7 @@
renesas,function = "gether";
};
- scifa1_pins: serial1 {
+ scifa1_pins: serial0 {
renesas,groups = "scifa1_data";
renesas,function = "scifa1";
};
Change the console alias to "serial0", for consistency with other boards (the first unlabeled serial port is always called "serial0"). Drop the "console=" parameters from the kernel command line, as they're no longer needed for DT-based platforms. Add the serial port config to chosen/stdout-path. Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> --- arch/arm/boot/dts/r8a7740-armadillo800eva.dts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)