From d0dd185f14e230a51cd7b1e056672ff555093551 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Wed, 27 Nov 2019 09:01:13 +0100 Subject: ARM Layerscape: ls1046ardb: Fix SPI NOR flash compatibles The upstream dts file has a "spansion,m25p80" as compatible string for the SPI NOR flashes. This doesn't match the real chip which identifies itself as "s25fl512s". The driver warns about this. Change the compatible to "jedec,spi-nor" to avoid such issues. Signed-off-by: Sascha Hauer --- arch/arm/dts/fsl-ls1046a-rdb.dts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/arch/arm/dts/fsl-ls1046a-rdb.dts b/arch/arm/dts/fsl-ls1046a-rdb.dts index 9a2794c910..3586e08b04 100644 --- a/arch/arm/dts/fsl-ls1046a-rdb.dts +++ b/arch/arm/dts/fsl-ls1046a-rdb.dts @@ -114,6 +114,14 @@ }; }; +&qflash0 { + compatible = "jedec,spi-nor"; +}; + +&qflash1 { + compatible = "jedec,spi-nor"; +}; + &usb0 { dr_mode = "host"; }; -- cgit v1.2.3