Skip to content

Commit

Permalink
ARM: dts: fix the chip select gpios definition in the SPI nodes
Browse files Browse the repository at this point in the history
This patch replaces the "cs-gpio" from "controller-data" node
as was specified in the old binding and uses the standard
"cs-gpios" property expected by the SPI core as is defined now
in the spi-s3c64xx driver DT binding.

Signed-off-by: Naveen Krishna Chatradhi <ch.naveen@samsung.com>
Reviewed-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
Reviewed-by: Tomasz Figa <t.figa@samsung.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
  • Loading branch information
Naveen Krishna Chatradhi authored and Mark Brown committed Jul 17, 2014
1 parent 797bf3a commit e138d43
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion arch/arm/boot/dts/exynos4210-smdkv310.dts
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@
};

spi_2: spi@13940000 {
cs-gpios = <&gpc1 2 0>;
status = "okay";

w25x80@0 {
Expand All @@ -178,7 +179,6 @@
spi-max-frequency = <1000000>;

controller-data {
cs-gpio = <&gpc1 2 0>;
samsung,spi-feedback-delay = <0>;
};

Expand Down
2 changes: 1 addition & 1 deletion arch/arm/boot/dts/exynos4412-trats2.dts
Original file line number Diff line number Diff line change
Expand Up @@ -589,14 +589,14 @@
spi_1: spi@13930000 {
pinctrl-names = "default";
pinctrl-0 = <&spi1_bus>;
cs-gpios = <&gpb 5 0>;
status = "okay";

s5c73m3_spi: s5c73m3 {
compatible = "samsung,s5c73m3";
spi-max-frequency = <50000000>;
reg = <0>;
controller-data {
cs-gpio = <&gpb 5 0>;
samsung,spi-feedback-delay = <2>;
};
};
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/boot/dts/exynos5250-smdk5250.dts
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,7 @@
};

spi_1: spi@12d30000 {
cs-gpios = <&gpa2 5 0>;
status = "okay";

w25q80bw@0 {
Expand All @@ -326,7 +327,6 @@
spi-max-frequency = <1000000>;

controller-data {
cs-gpio = <&gpa2 5 0>;
samsung,spi-feedback-delay = <0>;
};

Expand Down

0 comments on commit e138d43

Please sign in to comment.