Skip to content

Commit

Permalink
ARM: dts: STi: Fix aliases property name for STi boards
Browse files Browse the repository at this point in the history
Update serial aliases from "ttyASN" to more common "serialN".

Since dtc v1.4.6-9-gaadd0b65c987, aliases property name must
be lowercase only. This allows to fix following dtc warnings:

arch/arm/boot/dts/stih418-b2199.dtb: Warning (alias_paths): /aliases: aliases property name must include only lowercase and '-'
arch/arm/boot/dts/stih407-b2120.dtb: Warning (alias_paths): /aliases: aliases property name must include only lowercase and '-'
arch/arm/boot/dts/stih410-b2260.dtb: Warning (alias_paths): /aliases: aliases property name must include only lowercase and '-'
arch/arm/boot/dts/stih410-b2120.dtb: Warning (alias_paths): /aliases: aliases property name must include only lowercase and '-'

Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Patrice Chotard authored and Greg Kroah-Hartman committed Mar 14, 2018
1 parent dfd9190 commit d366c30
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion arch/arm/boot/dts/stih407-b2120.dts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
};

aliases {
ttyAS0 = &sbc_serial0;
serial0 = &sbc_serial0;
ethernet0 = &ethernet0;
};

Expand Down
2 changes: 1 addition & 1 deletion arch/arm/boot/dts/stih410-b2120.dts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
};

aliases {
ttyAS0 = &sbc_serial0;
serial0 = &sbc_serial0;
ethernet0 = &ethernet0;
};

Expand Down
2 changes: 1 addition & 1 deletion arch/arm/boot/dts/stih410-b2260.dts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
};

aliases {
ttyAS1 = &uart1;
serial1 = &uart1;
ethernet0 = &ethernet0;
};

Expand Down
2 changes: 1 addition & 1 deletion arch/arm/boot/dts/stih418-b2199.dts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
};

aliases {
ttyAS0 = &sbc_serial0;
serial0 = &sbc_serial0;
ethernet0 = &ethernet0;
};

Expand Down

0 comments on commit d366c30

Please sign in to comment.