Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b708e44d authored by Dinh Nguyen's avatar Dinh Nguyen Committed by Greg Kroah-Hartman
Browse files

ARM: socfpga: dts: fix qspi node compatible



[ Upstream commit cb25b11943cbcc5a34531129952870420f8be858 ]

The QSPI flash node needs to have the required "jedec,spi-nor" in the
compatible string.

Fixes: 1df99da8 ("ARM: dts: socfpga: Enable QSPI in Arria10 devkit")
Signed-off-by: default avatarDinh Nguyen <dinguyen@kernel.org>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent 9885c565
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@
	flash0: n25q00@0 {
		#address-cells = <1>;
		#size-cells = <1>;
		compatible = "n25q00aa";
		compatible = "micron,mt25qu02g", "jedec,spi-nor";
		reg = <0>;
		spi-max-frequency = <100000000>;

+1 −1
Original line number Diff line number Diff line
@@ -131,7 +131,7 @@
	flash: flash@0 {
		#address-cells = <1>;
		#size-cells = <1>;
		compatible = "n25q256a";
		compatible = "micron,n25q256a", "jedec,spi-nor";
		reg = <0>;
		spi-max-frequency = <100000000>;

+1 −1
Original line number Diff line number Diff line
@@ -136,7 +136,7 @@
	flash0: n25q00@0 {
		#address-cells = <1>;
		#size-cells = <1>;
		compatible = "n25q00";
		compatible = "micron,mt25qu02g", "jedec,spi-nor";
		reg = <0>;	/* chip select */
		spi-max-frequency = <100000000>;

+1 −1
Original line number Diff line number Diff line
@@ -181,7 +181,7 @@
	flash: flash@0 {
		#address-cells = <1>;
		#size-cells = <1>;
		compatible = "n25q00";
		compatible = "micron,mt25qu02g", "jedec,spi-nor";
		reg = <0>;
		spi-max-frequency = <100000000>;

+1 −1
Original line number Diff line number Diff line
@@ -87,7 +87,7 @@
	flash: flash@0 {
		#address-cells = <1>;
		#size-cells = <1>;
		compatible = "n25q256a";
		compatible = "micron,n25q256a", "jedec,spi-nor";
		reg = <0>;
		spi-max-frequency = <100000000>;
		m25p,fast-read;
Loading