* [GIT PULL] pin control fixes for the v4.2 series, take one
@ 2015-07-21 18:36 Linus Walleij
2015-07-21 18:47 ` Uwe Kleine-König
0 siblings, 1 reply; 5+ messages in thread
From: Linus Walleij @ 2015-07-21 18:36 UTC (permalink / raw)
To: Linus Torvalds
Cc: linux-kernel@vger.kernel.org, linux-gpio@vger.kernel.org,
Sergei Shtylyov, Uwe Kleine-König
Hi Linus,
here are some overly ripe pin control fixes for the v4.2 series.
They got delayed because of various crap commits and having
to clean and rinse the patch stack a few times. Now they are
however looking good.
Please pull this in, details in the signed tag.
Yours,
Linus Walleij
The following changes since commit bc0195aad0daa2ad5b0d76cce22b167bc3435590:
Linux 4.2-rc2 (2015-07-12 15:10:30 -0700)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
tags/pinctrl-v4.2-2
for you to fetch changes up to 681ccdcc756f17f847beba5ac4cd3d03e0949489:
pinctrl: lpc18xx: fix schmitt trigger setup (2015-07-20 11:01:53 +0200)
----------------------------------------------------------------
Pin control fixes for the v4.2 series:
- Some dead defines dropped from the Samsung driver, was
targeted for -rc2 but got delayed
- Drop the strict mode from abx500, this was too strict
- Fix the R-Car sparse IRQs code to work as intended
- Fix the IRQ code for the pinctrl-single GPIO backend to not
enforce threaded IRQs
- Clear the latched events/IRQs for the Broadcom BCM2835
driver
- Fix up debugfs for the Freescale imx1 driver
- Fix a typo bug in the Schmitt Trigger setup in the LPC18xx
driver
----------------------------------------------------------------
Grygorii Strashko (1):
pinctrl: single: ensure pcs irq will not be forced threaded
Joachim Eastwood (1):
pinctrl: lpc18xx: fix schmitt trigger setup
Jonathan Bell (1):
pinctrl: bcm2835: Clear the event latch register when disabling interrupts
Krzysztof Kozlowski (1):
pinctrl: samsung: Remove old unused defines
Linus Walleij (1):
pinctrl: abx500: remove strict mode
Sergei Shtylyov (1):
sh-pfc: fix sparse GPIOs for R-Car SoCs
Uwe Kleine-König (1):
Subject: pinctrl: imx1-core: Fix debug output in .pin_config_set callback
drivers/pinctrl/bcm/pinctrl-bcm2835.c | 2 ++
drivers/pinctrl/freescale/pinctrl-imx1-core.c | 3 +--
drivers/pinctrl/nomadik/pinctrl-abx500.c | 1 -
drivers/pinctrl/pinctrl-lpc18xx.c | 4 ++--
drivers/pinctrl/pinctrl-single.c | 3 ++-
drivers/pinctrl/samsung/pinctrl-samsung.c | 5 -----
drivers/pinctrl/sh-pfc/sh_pfc.h | 2 +-
7 files changed, 8 insertions(+), 12 deletions(-)
--
To unsubscribe from this list: send the line "unsubscribe linux-gpio" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [GIT PULL] pin control fixes for the v4.2 series, take one
2015-07-21 18:36 [GIT PULL] pin control fixes for the v4.2 series, take one Linus Walleij
@ 2015-07-21 18:47 ` Uwe Kleine-König
2015-07-21 21:25 ` Linus Walleij
0 siblings, 1 reply; 5+ messages in thread
From: Uwe Kleine-König @ 2015-07-21 18:47 UTC (permalink / raw)
To: Linus Walleij
Cc: Linus Torvalds, linux-kernel@vger.kernel.org,
linux-gpio@vger.kernel.org, Sergei Shtylyov
Hello,
On Tue, Jul 21, 2015 at 08:36:04PM +0200, Linus Walleij wrote:
> Subject: pinctrl: imx1-core: Fix debug output in .pin_config_set callback
I remember seeing that "Subject: " in my patch stack, I thought I fixed
that and now it's to late for
git filter-branch --msg-filter 'sed "1s/Subject: //"' linus/master..
?! :-(
Best regards
Uwe
--
Pengutronix e.K. | Uwe Kleine-König |
Industrial Linux Solutions | http://www.pengutronix.de/ |
--
To unsubscribe from this list: send the line "unsubscribe linux-gpio" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [GIT PULL] pin control fixes for the v4.2 series, take one
2015-07-21 18:47 ` Uwe Kleine-König
@ 2015-07-21 21:25 ` Linus Walleij
2015-07-21 22:29 ` Linus Torvalds
2015-07-22 7:08 ` Uwe Kleine-König
0 siblings, 2 replies; 5+ messages in thread
From: Linus Walleij @ 2015-07-21 21:25 UTC (permalink / raw)
To: Uwe Kleine-König
Cc: Linus Torvalds, linux-kernel@vger.kernel.org,
linux-gpio@vger.kernel.org, Sergei Shtylyov
On Tue, Jul 21, 2015 at 8:47 PM, Uwe Kleine-König
<u.kleine-koenig@pengutronix.de> wrote:
> On Tue, Jul 21, 2015 at 08:36:04PM +0200, Linus Walleij wrote:
>> Subject: pinctrl: imx1-core: Fix debug output in .pin_config_set callback
> I remember seeing that "Subject: " in my patch stack, I thought I fixed
> that and now it's to late for
Ah, how could I miss that. Selective vision or something.
Well let's see if Linus (the big penguin) want to fix it up, I
can for one live with it.
Yours,
Linus Walleij
--
To unsubscribe from this list: send the line "unsubscribe linux-gpio" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [GIT PULL] pin control fixes for the v4.2 series, take one
2015-07-21 21:25 ` Linus Walleij
@ 2015-07-21 22:29 ` Linus Torvalds
2015-07-22 7:08 ` Uwe Kleine-König
1 sibling, 0 replies; 5+ messages in thread
From: Linus Torvalds @ 2015-07-21 22:29 UTC (permalink / raw)
To: Linus Walleij
Cc: Uwe Kleine-König, linux-kernel@vger.kernel.org,
linux-gpio@vger.kernel.org, Sergei Shtylyov
On Tue, Jul 21, 2015 at 2:25 PM, Linus Walleij <linus.walleij@linaro.org> wrote:
>
> Ah, how could I miss that. Selective vision or something.
> Well let's see if Linus (the big penguin) want to fix it up, I
> can for one live with it.
Not the first time it has happened, and fixing it up generally is more
pain than it's worth.
We have worse examples of nasty crap. See for example commit
c6d409cfd0fd. That was supposed to be a "cleanup".
Oh well.
Mistakes happen. I don't get upset about occasionally screwed up
commit logs. If it becomes a _pattern_, now that is when I might start
getting annoyed.
Linus
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [GIT PULL] pin control fixes for the v4.2 series, take one
2015-07-21 21:25 ` Linus Walleij
2015-07-21 22:29 ` Linus Torvalds
@ 2015-07-22 7:08 ` Uwe Kleine-König
1 sibling, 0 replies; 5+ messages in thread
From: Uwe Kleine-König @ 2015-07-22 7:08 UTC (permalink / raw)
To: Linus Walleij
Cc: Linus Torvalds, linux-kernel@vger.kernel.org,
linux-gpio@vger.kernel.org, Sergei Shtylyov
Hello Linus,
On Tue, Jul 21, 2015 at 11:25:40PM +0200, Linus Walleij wrote:
> On Tue, Jul 21, 2015 at 8:47 PM, Uwe Kleine-König
> <u.kleine-koenig@pengutronix.de> wrote:
>
> > On Tue, Jul 21, 2015 at 08:36:04PM +0200, Linus Walleij wrote:
> >> Subject: pinctrl: imx1-core: Fix debug output in .pin_config_set callback
> > I remember seeing that "Subject: " in my patch stack, I thought I fixed
> > that and now it's to late for
>
> Ah, how could I miss that. Selective vision or something.
> Well let's see if Linus (the big penguin) want to fix it up, I
> can for one live with it.
if the other Linus fixes it, he probably need help from the NSA to not
break your signed tag. :-)
Best regards
Uwe
--
Pengutronix e.K. | Uwe Kleine-König |
Industrial Linux Solutions | http://www.pengutronix.de/ |
--
To unsubscribe from this list: send the line "unsubscribe linux-gpio" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-07-22 7:08 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-21 18:36 [GIT PULL] pin control fixes for the v4.2 series, take one Linus Walleij
2015-07-21 18:47 ` Uwe Kleine-König
2015-07-21 21:25 ` Linus Walleij
2015-07-21 22:29 ` Linus Torvalds
2015-07-22 7:08 ` Uwe Kleine-König
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).