diff options
author | Angelo Dureghello | 2023-02-15 23:54:18 +0100 |
---|---|---|
committer | Angelo Dureghello | 2023-03-15 01:38:19 +0100 |
commit | 12f5489297bc3b58bd9cc870da4331775263398c (patch) | |
tree | 1007edeca803c2e0f9fba6df4e59ae423378f17e | |
parent | 1e48392e320c15f726815e1c239ee4afd9af9bbf (diff) |
m68k: dts: stmark2: set correct compatible field for spi nor
Fix error:
Invalid chip select 0:1 (err=-19)
update spi nor "compatible" property with "jedec,spi-nor"
to have spi nor properly bound as a child device.
Signed-off-by: Angelo Durgehello <angelo@kernel-space.org>
-rw-r--r-- | arch/m68k/dts/stmark2.dts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m68k/dts/stmark2.dts b/arch/m68k/dts/stmark2.dts index 306b56d679e..3688651e592 100644 --- a/arch/m68k/dts/stmark2.dts +++ b/arch/m68k/dts/stmark2.dts @@ -27,7 +27,7 @@ flash: is25lp128@1 { #address-cells = <1>; #size-cells = <1>; - compatible = "spi-flash"; + compatible = "jedec,spi-nor"; spi-max-frequency = <60000000>; reg = <1>; }; |