Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1486261 > unrolled thread
| Started by | Gerd Hoffmann <kraxel@redhat.com> |
|---|---|
| First post | 2016-09-19 10:50 +0200 |
| Last post | 2016-09-23 11:00 +0200 |
| Articles | 3 — 3 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH v4 1/7] pinctrl: bcm2835: add pull defines to dt bindings Gerd Hoffmann <kraxel@redhat.com> - 2016-09-19 10:50 +0200
Re: [PATCH v4 1/7] pinctrl: bcm2835: add pull defines to dt bindings Eric Anholt <eric@anholt.net> - 2016-09-19 12:10 +0200
Re: [PATCH v4 1/7] pinctrl: bcm2835: add pull defines to dt bindings Linus Walleij <linus.walleij@linaro.org> - 2016-09-23 11:00 +0200
| From | Gerd Hoffmann <kraxel@redhat.com> |
|---|---|
| Date | 2016-09-19 10:50 +0200 |
| Subject | [PATCH v4 1/7] pinctrl: bcm2835: add pull defines to dt bindings |
| Message-ID | <sj2r0-398-7@gated-at.bofh.it> |
Also delete (unused) private enum from driver.
The pull defines can be used instead if needed.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
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_) & 0xffff)
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_OFF 0
+#define BCM2835_PUD_DOWN 1
+#define BCM2835_PUD_UP 2
+
#endif /* __DT_BINDINGS_PINCTRL_BCM2835_H__ */
--
1.8.3.1
[toc] | [next] | [standalone]
| From | Eric Anholt <eric@anholt.net> |
|---|---|
| Date | 2016-09-19 12:10 +0200 |
| Message-ID | <sj3Gp-43G-7@gated-at.bofh.it> |
| In reply to | #1486261 |
[Multipart message — attachments visible in raw view] — view raw
Gerd Hoffmann <kraxel@redhat.com> writes: > Also delete (unused) private enum from driver. > The pull defines can be used instead if needed. > > Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Acked-by: Eric Anholt <eric@anholt.net> gpio maintainers, could I pull this through my dt tree? Or does this need to be split in two?
[toc] | [prev] | [next] | [standalone]
| From | Linus Walleij <linus.walleij@linaro.org> |
|---|---|
| Date | 2016-09-23 11:00 +0200 |
| Message-ID | <skuuR-1sk-1@gated-at.bofh.it> |
| In reply to | #1486315 |
On Mon, Sep 19, 2016 at 12:07 PM, Eric Anholt <eric@anholt.net> wrote: > Gerd Hoffmann <kraxel@redhat.com> writes: > >> Also delete (unused) private enum from driver. >> The pull defines can be used instead if needed. >> >> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> > > Acked-by: Eric Anholt <eric@anholt.net> > > 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 <linus.walleij@linaro.org> Yours, Linus Walleij
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web