linux-tegra.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] dt-bindings: Fix entry name for I/O High Voltage property
@ 2020-10-26  6:39 Vidya Sagar
  2020-10-26  6:39 ` [PATCH 2/2] arm64: tegra: Fix DT binding for IO High Voltage entry Vidya Sagar
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Vidya Sagar @ 2020-10-26  6:39 UTC (permalink / raw)
  To: robh+dt, thierry.reding, jonathanh, jckuo, kyarlagadda,
	lorenzo.pieralisi, amurray
  Cc: linux-gpio, devicetree, linux-tegra, linux-kernel, kthota,
	mmaddireddy, vidyas, sagar.tv

Correct the name of the I/O High Voltage Property from
'nvidia,io-high-voltage' to 'nvidia,io-hv'.

Fixes: 2585a584f844 ("pinctrl: Add Tegra194 pinctrl DT bindings")
Signed-off-by: Vidya Sagar <vidyas@nvidia.com>
---
 .../devicetree/bindings/pinctrl/nvidia,tegra194-pinmux.txt      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/pinctrl/nvidia,tegra194-pinmux.txt b/Documentation/devicetree/bindings/pinctrl/nvidia,tegra194-pinmux.txt
index 8763f448c376..90d38f710635 100644
--- a/Documentation/devicetree/bindings/pinctrl/nvidia,tegra194-pinmux.txt
+++ b/Documentation/devicetree/bindings/pinctrl/nvidia,tegra194-pinmux.txt
@@ -99,7 +99,7 @@ Example:
 					nvidia,schmitt = <TEGRA_PIN_DISABLE>;
 					nvidia,lpdr = <TEGRA_PIN_ENABLE>;
 					nvidia,enable-input = <TEGRA_PIN_DISABLE>;
-					nvidia,io-high-voltage = <TEGRA_PIN_ENABLE>;
+					nvidia,io-hv = <TEGRA_PIN_ENABLE>;
 					nvidia,tristate = <TEGRA_PIN_DISABLE>;
 					nvidia,pull = <TEGRA_PIN_PULL_NONE>;
 				};
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] arm64: tegra: Fix DT binding for IO High Voltage entry
  2020-10-26  6:39 [PATCH 1/2] dt-bindings: Fix entry name for I/O High Voltage property Vidya Sagar
@ 2020-10-26  6:39 ` Vidya Sagar
  2020-10-30 18:32 ` [PATCH 1/2] dt-bindings: Fix entry name for I/O High Voltage property Rob Herring
  2020-11-10 17:44 ` Thierry Reding
  2 siblings, 0 replies; 4+ messages in thread
From: Vidya Sagar @ 2020-10-26  6:39 UTC (permalink / raw)
  To: robh+dt, thierry.reding, jonathanh, jckuo, kyarlagadda,
	lorenzo.pieralisi, amurray
  Cc: linux-gpio, devicetree, linux-tegra, linux-kernel, kthota,
	mmaddireddy, vidyas, sagar.tv

Fix the device-tree entry that represents I/O High Voltage property
by replacing 'nvidia,io-high-voltage' with 'nvidia,io-hv' as the former
entry is deprecated.

Fixes: dbb72e2c305b ("arm64: tegra: Add configuration for PCIe C5 sideband signals")
Signed-off-by: Vidya Sagar <vidyas@nvidia.com>
---
 arch/arm64/boot/dts/nvidia/tegra194.dtsi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm64/boot/dts/nvidia/tegra194.dtsi b/arch/arm64/boot/dts/nvidia/tegra194.dtsi
index 48160f48003a..5007a2a8647c 100644
--- a/arch/arm64/boot/dts/nvidia/tegra194.dtsi
+++ b/arch/arm64/boot/dts/nvidia/tegra194.dtsi
@@ -155,7 +155,7 @@
 					nvidia,schmitt = <TEGRA_PIN_DISABLE>;
 					nvidia,lpdr = <TEGRA_PIN_ENABLE>;
 					nvidia,enable-input = <TEGRA_PIN_DISABLE>;
-					nvidia,io-high-voltage = <TEGRA_PIN_ENABLE>;
+					nvidia,io-hv = <TEGRA_PIN_ENABLE>;
 					nvidia,tristate = <TEGRA_PIN_DISABLE>;
 					nvidia,pull = <TEGRA_PIN_PULL_NONE>;
 				};
@@ -167,7 +167,7 @@
 					nvidia,schmitt = <TEGRA_PIN_DISABLE>;
 					nvidia,lpdr = <TEGRA_PIN_ENABLE>;
 					nvidia,enable-input = <TEGRA_PIN_ENABLE>;
-					nvidia,io-high-voltage = <TEGRA_PIN_ENABLE>;
+					nvidia,io-hv = <TEGRA_PIN_ENABLE>;
 					nvidia,tristate = <TEGRA_PIN_DISABLE>;
 					nvidia,pull = <TEGRA_PIN_PULL_NONE>;
 				};
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/2] dt-bindings: Fix entry name for I/O High Voltage property
  2020-10-26  6:39 [PATCH 1/2] dt-bindings: Fix entry name for I/O High Voltage property Vidya Sagar
  2020-10-26  6:39 ` [PATCH 2/2] arm64: tegra: Fix DT binding for IO High Voltage entry Vidya Sagar
@ 2020-10-30 18:32 ` Rob Herring
  2020-11-10 17:44 ` Thierry Reding
  2 siblings, 0 replies; 4+ messages in thread
From: Rob Herring @ 2020-10-30 18:32 UTC (permalink / raw)
  To: Vidya Sagar
  Cc: kyarlagadda, kthota, lorenzo.pieralisi, linux-kernel,
	mmaddireddy, linux-tegra, robh+dt, sagar.tv, amurray,
	thierry.reding, jonathanh, jckuo, devicetree, linux-gpio

On Mon, 26 Oct 2020 12:09:01 +0530, Vidya Sagar wrote:
> Correct the name of the I/O High Voltage Property from
> 'nvidia,io-high-voltage' to 'nvidia,io-hv'.
> 
> Fixes: 2585a584f844 ("pinctrl: Add Tegra194 pinctrl DT bindings")
> Signed-off-by: Vidya Sagar <vidyas@nvidia.com>
> ---
>  .../devicetree/bindings/pinctrl/nvidia,tegra194-pinmux.txt      | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 

Acked-by: Rob Herring <robh@kernel.org>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/2] dt-bindings: Fix entry name for I/O High Voltage property
  2020-10-26  6:39 [PATCH 1/2] dt-bindings: Fix entry name for I/O High Voltage property Vidya Sagar
  2020-10-26  6:39 ` [PATCH 2/2] arm64: tegra: Fix DT binding for IO High Voltage entry Vidya Sagar
  2020-10-30 18:32 ` [PATCH 1/2] dt-bindings: Fix entry name for I/O High Voltage property Rob Herring
@ 2020-11-10 17:44 ` Thierry Reding
  2 siblings, 0 replies; 4+ messages in thread
From: Thierry Reding @ 2020-11-10 17:44 UTC (permalink / raw)
  To: Vidya Sagar
  Cc: robh+dt, jonathanh, jckuo, kyarlagadda, lorenzo.pieralisi,
	amurray, linux-gpio, devicetree, linux-tegra, linux-kernel,
	kthota, mmaddireddy, sagar.tv

[-- Attachment #1: Type: text/plain, Size: 466 bytes --]

On Mon, Oct 26, 2020 at 12:09:01PM +0530, Vidya Sagar wrote:
> Correct the name of the I/O High Voltage Property from
> 'nvidia,io-high-voltage' to 'nvidia,io-hv'.
> 
> Fixes: 2585a584f844 ("pinctrl: Add Tegra194 pinctrl DT bindings")
> Signed-off-by: Vidya Sagar <vidyas@nvidia.com>
> ---
>  .../devicetree/bindings/pinctrl/nvidia,tegra194-pinmux.txt      | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Both patches applied, thanks.

Thierry

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-11-10 17:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-26  6:39 [PATCH 1/2] dt-bindings: Fix entry name for I/O High Voltage property Vidya Sagar
2020-10-26  6:39 ` [PATCH 2/2] arm64: tegra: Fix DT binding for IO High Voltage entry Vidya Sagar
2020-10-30 18:32 ` [PATCH 1/2] dt-bindings: Fix entry name for I/O High Voltage property Rob Herring
2020-11-10 17:44 ` Thierry Reding

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).