diff options
| author | Mario Six <[email protected]> | 2018-04-26 10:10:59 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2018-05-08 09:07:37 -0400 |
| commit | cb61c9ec64337a9a6c4a91d8e3ff0b139de99d9e (patch) | |
| tree | 77e074cad445718c4c0cabd80860497a4c547310 | |
| parent | b2031ff766f993451e1d55c7d420374863c24588 (diff) | |
arm: controlcenterdc: Add spi-flash compatible strings
Since kirkwook SPI was recently converted to DM, add compatible strings
to the SPI flash devices to make them work with the new driver.
Signed-off-by: Mario Six <[email protected]>
| -rw-r--r-- | arch/arm/dts/armada-38x-controlcenterdc.dts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/dts/armada-38x-controlcenterdc.dts b/arch/arm/dts/armada-38x-controlcenterdc.dts index 896f8ae66dc..2cc996876a7 100644 --- a/arch/arm/dts/armada-38x-controlcenterdc.dts +++ b/arch/arm/dts/armada-38x-controlcenterdc.dts @@ -92,14 +92,14 @@ spi-flash@0 { #address-cells = <1>; #size-cells = <1>; - compatible = "n25q016a"; + compatible = "n25q016a", "spi-flash"; reg = <0>; /* Chip select 0 */ spi-max-frequency = <108000000>; }; spi-flash@1 { #address-cells = <1>; #size-cells = <1>; - compatible = "n25q128a11"; + compatible = "n25q128a11", "spi-flash"; reg = <1>; /* Chip select 1 */ spi-max-frequency = <108000000>; u-boot,dm-pre-reloc; |
