diff options
author | Mathieu Malaterre <[email protected]> | 2018-01-24 12:42:08 +0100 |
---|---|---|
committer | James Hogan <[email protected]> | 2018-02-19 10:55:37 +0000 |
commit | 018eab88efc581c977756a8b7b2eb1254cbe1c7c (patch) | |
tree | 325232c83395e5b04910269a4fa7a3fa824986af | |
parent | c768519089785bbbcddd95d70a8db924ac07e065 (diff) |
MIPS: dts: Fix a typo in the node unit name
The unit name was 8c00000 but since the reg property is declared as:
reg = <0x0 0x4c00000 0x1 0xfb400000>;
the unit name should have been instead 4c00000.
Tested on MIPS Creator CI20 (v1):
$ cat /sys/firmware/devicetree/.../partitions/partition@4c00000/label;echo
system
Reported-by: James Hogan <[email protected]>
Signed-off-by: Mathieu Malaterre <[email protected]>
Cc: Ralf Baechle <[email protected]>
Cc: Rob Herring <[email protected]>
Cc: Mark Rutland <[email protected]>
Cc: Paul Burton <[email protected]>
Cc: Paul Cercueil <[email protected]>
Cc: [email protected]
Cc: [email protected]
Patchwork: https://patchwork.linux-mips.org/patch/18529/
Signed-off-by: James Hogan <[email protected]>
-rw-r--r-- | arch/mips/boot/dts/ingenic/ci20.dts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/boot/dts/ingenic/ci20.dts b/arch/mips/boot/dts/ingenic/ci20.dts index 7d5e49e40b0d..38078594cf97 100644 --- a/arch/mips/boot/dts/ingenic/ci20.dts +++ b/arch/mips/boot/dts/ingenic/ci20.dts @@ -125,7 +125,7 @@ reg = <0x0 0xc00000 0x0 0x4000000>; }; - partition@8c00000 { + partition@4c00000 { label = "system"; reg = <0x0 0x4c00000 0x1 0xfb400000>; }; |