diff options
author | Amelie Delaunay <amelie.delaunay@st.com> | 2017-06-27 17:45:13 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-06-28 20:00:45 +0100 |
commit | 567300d11ef54f7779aa7324510fd4dbd470f73e (patch) | |
tree | a1bf635bef495ad587aea0135af0eb431e3631be /Documentation/devicetree/bindings/spi | |
parent | a2f07d38d6981ed220d86b7df07e4ac6a1734443 (diff) | |
download | op-kernel-dev-567300d11ef54f7779aa7324510fd4dbd470f73e.zip op-kernel-dev-567300d11ef54f7779aa7324510fd4dbd470f73e.tar.gz |
spi: stm32: use SoC specific compatible
This patch replaces st,stm32-spi compatible with st,stm32h7-spi SoC
specific compatible and updates the example accondingly.
Signed-off-by: Amelie Delaunay <amelie.delaunay@st.com>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'Documentation/devicetree/bindings/spi')
-rw-r--r-- | Documentation/devicetree/bindings/spi/spi-stm32.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/devicetree/bindings/spi/spi-stm32.txt b/Documentation/devicetree/bindings/spi/spi-stm32.txt index 3958bf6..415378b 100644 --- a/Documentation/devicetree/bindings/spi/spi-stm32.txt +++ b/Documentation/devicetree/bindings/spi/spi-stm32.txt @@ -7,7 +7,7 @@ from 4 to 32-bit data size. Although it can be configured as master or slave, only master is supported by the driver. Required properties: -- compatible: Must be "st,stm32-spi". +- compatible: Must be "st,stm32h7-spi". - reg: Offset and length of the device's register set. - interrupts: Must contain the interrupt id. - clocks: Must contain an entry for spiclk (which feeds the internal clock @@ -38,7 +38,7 @@ Example: spi2: spi@40003800 { #address-cells = <1>; #size-cells = <0>; - compatible = "st,stm32-spi"; + compatible = "st,stm32h7-spi"; reg = <0x40003800 0x400>; interrupts = <36>; clocks = <&rcc SPI2_CK>; |