diff options
author | Simon Glass <sjg@chromium.org> | 2019-05-18 11:59:49 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2019-07-10 16:52:58 -0600 |
commit | 24c2776ba9002fadbf7cf86a0f5bc6a17cc08290 (patch) | |
tree | 9829d6a9a76ab821cb45084dff430abd4dd899fe /arch/sandbox | |
parent | e676f4397c019840e2b0d7330506a857c6dc5a81 (diff) | |
download | u-boot-24c2776ba9002fadbf7cf86a0f5bc6a17cc08290.tar.gz |
sandbox: Correct spi flash operation
Since the SPI nor conversion, 'sf probe' does not work on sandbox. Fix
this by using the expected compatible string in the flash node.
Signed-off-by: Simon Glass <sjg@chromium.org>
Fixes: cd35365762 (mtd: sf_probe: remove spi-flash compatible)
Diffstat (limited to 'arch/sandbox')
-rw-r--r-- | arch/sandbox/dts/sandbox.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sandbox/dts/sandbox.dtsi b/arch/sandbox/dts/sandbox.dtsi index ebc4ece824..2fb365d86e 100644 --- a/arch/sandbox/dts/sandbox.dtsi +++ b/arch/sandbox/dts/sandbox.dtsi @@ -150,7 +150,7 @@ firmware_storage_spi: flash@0 { u-boot,dm-pre-reloc; reg = <0>; - compatible = "spansion,m25p16", "sandbox,spi-flash"; + compatible = "spansion,m25p16", "jedec,spi-nor"; spi-max-frequency = <40000000>; sandbox,filename = "spi.bin"; }; |