diff options
author | Zhou Yanjie <[email protected]> | 2019-01-25 02:22:15 +0800 |
---|---|---|
committer | Paul Burton <[email protected]> | 2019-01-25 11:19:37 -0800 |
commit | 1ca1c87f91d9dc50d6a38e2177b2032996e7901c (patch) | |
tree | d7b67b5629dc27f225b923f2a4de46d8999c9392 | |
parent | 70999ec1c9d3f783a7232973cfc26971e5732758 (diff) |
DTS: CI20: Fix bugs in ci20's device tree.
According to the Schematic, the hardware of ci20 leads to uart3,
but not to uart2. Uart2 is miswritten in the original code.
Signed-off-by: Zhou Yanjie <[email protected]>
Signed-off-by: Paul Burton <[email protected]>
Cc: linux-mips <[email protected]>
Cc: linux-kernel <[email protected]>
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: syq <[email protected]>
Cc: jiaxun.yang <[email protected]>
-rw-r--r-- | arch/mips/boot/dts/ingenic/ci20.dts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/mips/boot/dts/ingenic/ci20.dts b/arch/mips/boot/dts/ingenic/ci20.dts index 50cff3cbcc6d..4f7b1fa31cf5 100644 --- a/arch/mips/boot/dts/ingenic/ci20.dts +++ b/arch/mips/boot/dts/ingenic/ci20.dts @@ -76,7 +76,7 @@ status = "okay"; pinctrl-names = "default"; - pinctrl-0 = <&pins_uart2>; + pinctrl-0 = <&pins_uart3>; }; &uart4 { @@ -196,9 +196,9 @@ bias-disable; }; - pins_uart2: uart2 { - function = "uart2"; - groups = "uart2-data", "uart2-hwflow"; + pins_uart3: uart3 { + function = "uart3"; + groups = "uart3-data", "uart3-hwflow"; bias-disable; }; |