2019-01-22 05:27:55

by Heiko Schocher

[permalink] [raw]
Subject: [PATCH v1 0/2] ARM: dts: am335x-shc.dts: small updates for shc board

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



2019-01-22 05:28:17

by Heiko Schocher

[permalink] [raw]
Subject: [PATCH v1 1/2] ARM: dts: am335x-shc.dts: Switch to SPDX identifier

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

Signed-off-by: Heiko Schocher <[email protected]>
---

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 <[email protected]>
*
- * 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


2019-01-22 05:29:44

by Heiko Schocher

[permalink] [raw]
Subject: [PATCH v1 2/2] ARM: dts: am335x-shc.dts: fix wrong cd pin level

cd pin on mmc1 is GPIO_ACTIVE_LOW not GPIO_ACTIVE_HIGH

Signed-off-by: Heiko Schocher <[email protected]>
---

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


2019-01-22 23:01:09

by Tony Lindgren

[permalink] [raw]
Subject: Re: [PATCH v1 2/2] ARM: dts: am335x-shc.dts: fix wrong cd pin level

* Heiko Schocher <[email protected]> [190121 21:27]:
> cd pin on mmc1 is GPIO_ACTIVE_LOW not GPIO_ACTIVE_HIGH

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

Tony

2019-01-24 16:22:05

by Tony Lindgren

[permalink] [raw]
Subject: Re: [PATCH v1 1/2] ARM: dts: am335x-shc.dts: Switch to SPDX identifier

* Heiko Schocher <[email protected]> [190121 21:26]:
> Adopt the SPDX license identifier headers to ease license
> compliance management.

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

Tony