diff options
author | Hou Zhiqiang <Zhiqiang.Hou@freescale.com> | 2016-03-09 10:50:55 +0100 |
---|---|---|
committer | Scott Wood <oss@buserror.net> | 2016-03-12 03:06:41 +0100 |
commit | fba4e9f9898ab181703723b9890ba29345edfe08 (patch) | |
tree | 30f830df6647747916e430e0a25e03672a87624f /arch/powerpc/boot/dts/fsl/mpc8536ds.dtsi | |
parent | powerpc/T104xRDB: add tdm riser card node to device tree (diff) | |
download | linux-fba4e9f9898ab181703723b9890ba29345edfe08.tar.xz linux-fba4e9f9898ab181703723b9890ba29345edfe08.zip |
powerpc/fsl/dts: Add "jedec,spi-nor" flash compatible
Starting with commit <8947e396a829> ("Documentation: dt: mtd:
replace "nor-jedec" binding with "jedec, spi-nor"") we have
"jedec,spi-nor" binding indicating support for JEDEC identification.
Use it for all flashes that are supposed to support READ ID op
according to the datasheets.
Signed-off-by: Hou Zhiqiang <Zhiqiang.Hou@freescale.com>
Signed-off-by: Scott Wood <oss@buserror.net>
Diffstat (limited to 'arch/powerpc/boot/dts/fsl/mpc8536ds.dtsi')
-rw-r--r-- | arch/powerpc/boot/dts/fsl/mpc8536ds.dtsi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/powerpc/boot/dts/fsl/mpc8536ds.dtsi b/arch/powerpc/boot/dts/fsl/mpc8536ds.dtsi index 937ad7e46119..a925fe49a73e 100644 --- a/arch/powerpc/boot/dts/fsl/mpc8536ds.dtsi +++ b/arch/powerpc/boot/dts/fsl/mpc8536ds.dtsi @@ -142,7 +142,7 @@ flash@0 { #address-cells = <1>; #size-cells = <1>; - compatible = "spansion,s25sl12801"; + compatible = "spansion,s25sl12801", "jedec,spi-nor"; reg = <0>; spi-max-frequency = <40000000>; partition@u-boot { @@ -166,17 +166,17 @@ }; }; flash@1 { - compatible = "spansion,s25sl12801"; + compatible = "spansion,s25sl12801", "jedec,spi-nor"; reg = <1>; spi-max-frequency = <40000000>; }; flash@2 { - compatible = "spansion,s25sl12801"; + compatible = "spansion,s25sl12801", "jedec,spi-nor"; reg = <2>; spi-max-frequency = <40000000>; }; flash@3 { - compatible = "spansion,s25sl12801"; + compatible = "spansion,s25sl12801", "jedec,spi-nor"; reg = <3>; spi-max-frequency = <40000000>; }; |