From: Amit Kumar Mahapatra Date: Mon, 17 Feb 2020 14:50:05 +0000 (-0700) Subject: arm64: zynqmp: Do not duplicate flash partition label property X-Git-Tag: v2020.10~292^2~4^2~37 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0546b1ab06b22fc3cc2c5b23be351ae671a58f82;p=platform%2Fkernel%2Fu-boot.git arm64: zynqmp: Do not duplicate flash partition label property In kernel 5.4, support has been added for reading MTD devices via the nvmem API. For this the mtd devices are registered as read-only NVMEM providers under sysfs with the same name as the flash partition label property. So if flash partition label property of multiple flash devices are identical then the second mtd device fails to get registered as a NVMEM provider. This patch fixes the issue by having different label property for different flashes. Signed-off-by: Amit Kumar Mahapatra Signed-off-by: Michal Simek --- diff --git a/arch/arm/dts/zynqmp-zc1751-xm016-dc2.dts b/arch/arm/dts/zynqmp-zc1751-xm016-dc2.dts index 2ff7952..92d938d 100644 --- a/arch/arm/dts/zynqmp-zc1751-xm016-dc2.dts +++ b/arch/arm/dts/zynqmp-zc1751-xm016-dc2.dts @@ -197,7 +197,7 @@ reg = <0>; partition@0 { - label = "data"; + label = "spi0-data"; reg = <0x0 0x100000>; }; }; @@ -214,7 +214,7 @@ reg = <0>; partition@0 { - label = "data"; + label = "spi1-data"; reg = <0x0 0x84000>; }; };