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

Commit 9ca946ea authored by Ivaylo Georgiev's avatar Ivaylo Georgiev
Browse files

Revert "spi: uniphier: fix incorrect property items"



This reverts commit adcb6d9f.

This is a preparation change for merging android-4.19-q.87 into
msm-4.19 branch.

[1] is conflicting against [2] in msm-4.19.

[1] adcb6d9f("spi: uniphier: fix incorrect property items")
[2] 728aba9a("Documentation: devicetree: Remove devicetree bindings from kernel")

Change-Id: Id40d7cee47cd9de2a2ebf02f6cd3910710ae5fe6
Signed-off-by: default avatarIvaylo Georgiev <irgeorgiev@codeaurora.org>
parent ead6fb73
Loading
Loading
Loading
Loading
+6 −8
Original line number Original line Diff line number Diff line
@@ -5,20 +5,18 @@ UniPhier SoCs have SCSSI which supports SPI single channel.
Required properties:
Required properties:
 - compatible: should be "socionext,uniphier-scssi"
 - compatible: should be "socionext,uniphier-scssi"
 - reg: address and length of the spi master registers
 - reg: address and length of the spi master registers
 - interrupts: a single interrupt specifier
 - #address-cells: must be <1>, see spi-bus.txt
 - pinctrl-names: should be "default"
 - #size-cells: must be <0>, see spi-bus.txt
 - pinctrl-0: pin control state for the default mode
 - clocks: A phandle to the clock for the device.
 - clocks: a phandle to the clock for the device
 - resets: A phandle to the reset control for the device.
 - resets: a phandle to the reset control for the device


Example:
Example:


spi0: spi@54006000 {
spi0: spi@54006000 {
	compatible = "socionext,uniphier-scssi";
	compatible = "socionext,uniphier-scssi";
	reg = <0x54006000 0x100>;
	reg = <0x54006000 0x100>;
	interrupts = <0 39 4>;
	#address-cells = <1>;
	pinctrl-names = "default";
	#size-cells = <0>;
	pinctrl-0 = <&pinctrl_spi0>;
	clocks = <&peri_clk 11>;
	clocks = <&peri_clk 11>;
	resets = <&peri_rst 11>;
	resets = <&peri_rst 11>;
};
};