mirror of https://gitee.com/openkylin/linux.git
ARM: dts: exynos: Remove console argument from bootargs
Remove the "console=ttySAC..." argument from DTSes having a proper stdout-path property. To make the code functionally equivalent, add the serial port baud rate and parity. Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org> Reviewed-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
This commit is contained in:
parent
06d5360946
commit
8cc76b1c75
|
@ -30,8 +30,8 @@ memory@40000000 {
|
|||
};
|
||||
|
||||
chosen {
|
||||
bootargs ="root=/dev/ram0 rw ramdisk=8192 initrd=0x41000000,8M console=ttySAC2,115200 init=/linuxrc";
|
||||
stdout-path = &serial_2;
|
||||
bootargs = "root=/dev/ram0 rw ramdisk=8192 initrd=0x41000000,8M init=/linuxrc";
|
||||
stdout-path = "serial2:115200n8";
|
||||
};
|
||||
|
||||
mmc_reg: voltage-regulator {
|
||||
|
|
|
@ -26,8 +26,8 @@ memory@40000000 {
|
|||
};
|
||||
|
||||
chosen {
|
||||
bootargs = "root=/dev/ram0 rw ramdisk=8192 initrd=0x41000000,8M console=ttySAC1,115200 init=/linuxrc";
|
||||
stdout-path = &serial_1;
|
||||
bootargs = "root=/dev/ram0 rw ramdisk=8192 initrd=0x41000000,8M init=/linuxrc";
|
||||
stdout-path = "serial1:115200n8";
|
||||
};
|
||||
|
||||
fixed-rate-clocks {
|
||||
|
|
|
@ -26,8 +26,8 @@ memory@40000000 {
|
|||
};
|
||||
|
||||
chosen {
|
||||
bootargs = "console=ttySAC2,115200N8 root=/dev/mmcblk0p5 rootwait earlyprintk panic=5";
|
||||
stdout-path = &serial_2;
|
||||
bootargs = "root=/dev/mmcblk0p5 rootwait earlyprintk panic=5";
|
||||
stdout-path = "serial2:115200n8";
|
||||
};
|
||||
|
||||
regulators {
|
||||
|
|
|
@ -24,8 +24,8 @@ memory@40000000 {
|
|||
};
|
||||
|
||||
chosen {
|
||||
bootargs = "console=ttySAC2,115200N8 root=/dev/mmcblk0p5 rw rootwait earlyprintk panic=5 maxcpus=1";
|
||||
stdout-path = &serial_2;
|
||||
bootargs = "root=/dev/mmcblk0p5 rw rootwait earlyprintk panic=5 maxcpus=1";
|
||||
stdout-path = "serial2:115200n8";
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -25,8 +25,7 @@ memory@40000000 {
|
|||
};
|
||||
|
||||
chosen {
|
||||
bootargs ="console=ttySAC2,115200";
|
||||
stdout-path = &serial_2;
|
||||
stdout-path = "serial2:115200n8";
|
||||
};
|
||||
|
||||
firmware@203f000 {
|
||||
|
|
|
@ -23,8 +23,8 @@ memory@40000000 {
|
|||
};
|
||||
|
||||
chosen {
|
||||
bootargs ="root=/dev/ram0 rw ramdisk=8192 initrd=0x41000000,8M console=ttySAC1,115200 init=/linuxrc";
|
||||
stdout-path = &serial_1;
|
||||
bootargs = "root=/dev/ram0 rw ramdisk=8192 initrd=0x41000000,8M init=/linuxrc";
|
||||
stdout-path = "serial1:115200n8";
|
||||
};
|
||||
|
||||
fixed-rate-clocks {
|
||||
|
|
Loading…
Reference in New Issue