Re: [PATCH v4 1/7] pinctrl: bcm2835: add pull defines to dt bindings

2016-09-23 Thread Linus Walleij
On Mon, Sep 19, 2016 at 12:07 PM, Eric Anholt  wrote:
> Gerd Hoffmann  writes:
>
>> Also delete (unused) private enum from driver.
>> The pull defines can be used instead if needed.
>>
>> Signed-off-by: Gerd Hoffmann 
>
> Acked-by: Eric Anholt 
>
> gpio maintainers, could I pull this through my dt tree?  Or does this
> need to be split in two?

You can take it. The bcm2835 driver is not seeing any conflicting
changes in this merge window.

Acked-by: Linus Walleij 

Yours,
Linus Walleij


Re: [PATCH v4 1/7] pinctrl: bcm2835: add pull defines to dt bindings

2016-09-19 Thread Eric Anholt
Gerd Hoffmann  writes:

> Also delete (unused) private enum from driver.
> The pull defines can be used instead if needed.
>
> Signed-off-by: Gerd Hoffmann 

Acked-by: Eric Anholt 

gpio maintainers, could I pull this through my dt tree?  Or does this
need to be split in two?



signature.asc
Description: PGP signature


[PATCH v4 1/7] pinctrl: bcm2835: add pull defines to dt bindings

2016-09-19 Thread Gerd Hoffmann
Also delete (unused) private enum from driver.
The pull defines can be used instead if needed.

Signed-off-by: Gerd Hoffmann 
---
 drivers/pinctrl/bcm/pinctrl-bcm2835.c | 6 --
 include/dt-bindings/pinctrl/bcm2835.h | 5 +
 2 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/drivers/pinctrl/bcm/pinctrl-bcm2835.c 
b/drivers/pinctrl/bcm/pinctrl-bcm2835.c
index fa77165..4cf612b 100644
--- a/drivers/pinctrl/bcm/pinctrl-bcm2835.c
+++ b/drivers/pinctrl/bcm/pinctrl-bcm2835.c
@@ -76,12 +76,6 @@ enum bcm2835_pinconf_param {
BCM2835_PINCONF_PARAM_PULL,
 };
 
-enum bcm2835_pinconf_pull {
-   BCM2835_PINCONFIG_PULL_NONE,
-   BCM2835_PINCONFIG_PULL_DOWN,
-   BCM2835_PINCONFIG_PULL_UP,
-};
-
 #define BCM2835_PINCONF_PACK(_param_, _arg_) ((_param_) << 16 | (_arg_))
 #define BCM2835_PINCONF_UNPACK_PARAM(_conf_) ((_conf_) >> 16)
 #define BCM2835_PINCONF_UNPACK_ARG(_conf_) ((_conf_) & 0x)
diff --git a/include/dt-bindings/pinctrl/bcm2835.h 
b/include/dt-bindings/pinctrl/bcm2835.h
index 6f0bc37..e4e4fdf 100644
--- a/include/dt-bindings/pinctrl/bcm2835.h
+++ b/include/dt-bindings/pinctrl/bcm2835.h
@@ -24,4 +24,9 @@
 #define BCM2835_FSEL_ALT2  6
 #define BCM2835_FSEL_ALT3  7
 
+/* brcm,pull property */
+#define BCM2835_PUD_OFF0
+#define BCM2835_PUD_DOWN   1
+#define BCM2835_PUD_UP 2
+
 #endif /* __DT_BINDINGS_PINCTRL_BCM2835_H__ */
-- 
1.8.3.1