linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1 0/2] ARM: dts: am335x-shc.dts: small updates for shc board
@ 2019-01-22  5:26 Heiko Schocher
  2019-01-22  5:26 ` [PATCH v1 1/2] ARM: dts: am335x-shc.dts: Switch to SPDX identifier Heiko Schocher
  2019-01-22  5:26 ` [PATCH v1 2/2] ARM: dts: am335x-shc.dts: fix wrong cd pin level Heiko Schocher
  0 siblings, 2 replies; 5+ messages in thread
From: Heiko Schocher @ 2019-01-22  5:26 UTC (permalink / raw)
  To: devicetree
  Cc: Mark Rutland, linux-omap, Tony Lindgren, linux-kernel,
	Rob Herring, Benoît Cousson, Heiko Schocher,
	linux-arm-kernel

small updates for am335x based shc board:
- switch DTS to SPDX identifier
- fix wrong gpio level for mmc1 cd pin


Heiko Schocher (2):
  ARM: dts: am335x-shc.dts: Switch to SPDX identifier
  ARM: dts: am335x-shc.dts: fix wrong cd pin level

 arch/arm/boot/dts/am335x-shc.dts | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

-- 
2.17.2


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [PATCH v1 1/2] ARM: dts: am335x-shc.dts: Switch to SPDX identifier
  2019-01-22  5:26 [PATCH v1 0/2] ARM: dts: am335x-shc.dts: small updates for shc board Heiko Schocher
@ 2019-01-22  5:26 ` Heiko Schocher
  2019-01-24 16:21   ` Tony Lindgren
  2019-01-22  5:26 ` [PATCH v1 2/2] ARM: dts: am335x-shc.dts: fix wrong cd pin level Heiko Schocher
  1 sibling, 1 reply; 5+ messages in thread
From: Heiko Schocher @ 2019-01-22  5:26 UTC (permalink / raw)
  To: devicetree
  Cc: Mark Rutland, linux-omap, Tony Lindgren, linux-kernel,
	Rob Herring, Benoît Cousson, Heiko Schocher,
	linux-arm-kernel

Adopt the SPDX license identifier headers to ease license
compliance management.

Signed-off-by: Heiko Schocher <hs@denx.de>
---

 arch/arm/boot/dts/am335x-shc.dts | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/arch/arm/boot/dts/am335x-shc.dts b/arch/arm/boot/dts/am335x-shc.dts
index d0fd68873689..5cdaf0cd9401 100644
--- a/arch/arm/boot/dts/am335x-shc.dts
+++ b/arch/arm/boot/dts/am335x-shc.dts
@@ -1,11 +1,9 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * support for the bosch am335x based shc c3 board
  *
  * Copyright, C) 2015 Heiko Schocher <hs@denx.de>
  *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
  */
 /dts-v1/;
 
-- 
2.17.2


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [PATCH v1 2/2] ARM: dts: am335x-shc.dts: fix wrong cd pin level
  2019-01-22  5:26 [PATCH v1 0/2] ARM: dts: am335x-shc.dts: small updates for shc board Heiko Schocher
  2019-01-22  5:26 ` [PATCH v1 1/2] ARM: dts: am335x-shc.dts: Switch to SPDX identifier Heiko Schocher
@ 2019-01-22  5:26 ` Heiko Schocher
  2019-01-22 22:59   ` Tony Lindgren
  1 sibling, 1 reply; 5+ messages in thread
From: Heiko Schocher @ 2019-01-22  5:26 UTC (permalink / raw)
  To: devicetree
  Cc: Mark Rutland, linux-omap, Tony Lindgren, linux-kernel,
	Rob Herring, Benoît Cousson, Heiko Schocher,
	linux-arm-kernel

cd pin on mmc1 is GPIO_ACTIVE_LOW not GPIO_ACTIVE_HIGH

Signed-off-by: Heiko Schocher <hs@denx.de>
---

 arch/arm/boot/dts/am335x-shc.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/am335x-shc.dts b/arch/arm/boot/dts/am335x-shc.dts
index 5cdaf0cd9401..bfbe27a80006 100644
--- a/arch/arm/boot/dts/am335x-shc.dts
+++ b/arch/arm/boot/dts/am335x-shc.dts
@@ -213,7 +213,7 @@
 	pinctrl-names = "default";
 	pinctrl-0 = <&mmc1_pins>;
 	bus-width = <0x4>;
-	cd-gpios = <&gpio0 6 GPIO_ACTIVE_HIGH>;
+	cd-gpios = <&gpio0 6 GPIO_ACTIVE_LOW>;
 	cd-inverted;
 	max-frequency = <26000000>;
 	vmmc-supply = <&vmmcsd_fixed>;
-- 
2.17.2


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH v1 2/2] ARM: dts: am335x-shc.dts: fix wrong cd pin level
  2019-01-22  5:26 ` [PATCH v1 2/2] ARM: dts: am335x-shc.dts: fix wrong cd pin level Heiko Schocher
@ 2019-01-22 22:59   ` Tony Lindgren
  0 siblings, 0 replies; 5+ messages in thread
From: Tony Lindgren @ 2019-01-22 22:59 UTC (permalink / raw)
  To: Heiko Schocher
  Cc: Mark Rutland, devicetree, linux-kernel, Rob Herring,
	Benoît Cousson, linux-omap, linux-arm-kernel

* Heiko Schocher <hs@denx.de> [190121 21:27]:
> cd pin on mmc1 is GPIO_ACTIVE_LOW not GPIO_ACTIVE_HIGH

Thanks applying into omap-for-v5.0/fixes.

Tony

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH v1 1/2] ARM: dts: am335x-shc.dts: Switch to SPDX identifier
  2019-01-22  5:26 ` [PATCH v1 1/2] ARM: dts: am335x-shc.dts: Switch to SPDX identifier Heiko Schocher
@ 2019-01-24 16:21   ` Tony Lindgren
  0 siblings, 0 replies; 5+ messages in thread
From: Tony Lindgren @ 2019-01-24 16:21 UTC (permalink / raw)
  To: Heiko Schocher
  Cc: Mark Rutland, devicetree, linux-kernel, Rob Herring,
	Benoît Cousson, linux-omap, linux-arm-kernel

* Heiko Schocher <hs@denx.de> [190121 21:26]:
> Adopt the SPDX license identifier headers to ease license
> compliance management.

Applying into omap-for-v5.1/dt thanks.

Tony

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2019-01-24 16:21 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-22  5:26 [PATCH v1 0/2] ARM: dts: am335x-shc.dts: small updates for shc board Heiko Schocher
2019-01-22  5:26 ` [PATCH v1 1/2] ARM: dts: am335x-shc.dts: Switch to SPDX identifier Heiko Schocher
2019-01-24 16:21   ` Tony Lindgren
2019-01-22  5:26 ` [PATCH v1 2/2] ARM: dts: am335x-shc.dts: fix wrong cd pin level Heiko Schocher
2019-01-22 22:59   ` Tony Lindgren

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).