* [PATCH] unset twsi option3 for gconfig as well
@ 2013-10-13 23:27 Roel Kluin
[not found] ` <1381706847-32762-1-git-send-email-roel.kluin-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Roel Kluin @ 2013-10-13 23:27 UTC (permalink / raw)
To: Linus Walleij, Grant Likely, Rob Herring,
linux-kernel-u79uwXL29TY76Z2rM5mHXA,
devicetree-u79uwXL29TY76Z2rM5mHXA
Cc: Roel Kluin
Signed-off-by: Roel Kluin <roel.kluin-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
---
drivers/pinctrl/mvebu/pinctrl-dove.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/pinctrl/mvebu/pinctrl-dove.c b/drivers/pinctrl/mvebu/pinctrl-dove.c
index 29f7e4f..360b9b2 100644
--- a/drivers/pinctrl/mvebu/pinctrl-dove.c
+++ b/drivers/pinctrl/mvebu/pinctrl-dove.c
@@ -335,7 +335,7 @@ static int dove_twsi_ctrl_set(struct mvebu_mpp_ctrl *ctrl,
unsigned long gcfg2 = readl(DOVE_GLOBAL_CONFIG_2);
gcfg1 &= ~DOVE_TWSI_ENABLE_OPTION1;
- gcfg2 &= ~(DOVE_TWSI_ENABLE_OPTION2 | DOVE_TWSI_ENABLE_OPTION2);
+ gcfg2 &= ~(DOVE_TWSI_ENABLE_OPTION2 | DOVE_TWSI_ENABLE_OPTION3);
switch (config) {
case 1:
--
1.8.1.2
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] unset twsi option3 for gconfig as well
[not found] ` <1381706847-32762-1-git-send-email-roel.kluin-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2013-10-14 7:08 ` Linus Walleij
[not found] ` <CACRpkdb8ibOm61D_iGkOkbas1475n4k5jptnRH7VFk=9+pipHQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Linus Walleij @ 2013-10-14 7:08 UTC (permalink / raw)
To: Roel Kluin, Sebastian Hesselbarth, Thomas Petazzoni
Cc: Grant Likely, Rob Herring,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Please include Thomas & Sebastian on the To: line when posting
patches to this driver.
On Mon, Oct 14, 2013 at 1:27 AM, Roel Kluin <roel.kluin-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
> Signed-off-by: Roel Kluin <roel.kluin-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
When you don't write a commit message I have no chance to
classify this patch.
- Is this a serious regression?
- Is this something that does not affect anybody, just a cleanup?
Please consult the following document:
Documentation/SubmittingPatches
Yours,
Linus Walleij
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] unset twsi option3 for gconfig as well
[not found] ` <CACRpkdb8ibOm61D_iGkOkbas1475n4k5jptnRH7VFk=9+pipHQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2013-10-14 7:12 ` Thomas Petazzoni
0 siblings, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2013-10-14 7:12 UTC (permalink / raw)
To: Linus Walleij
Cc: Roel Kluin, Sebastian Hesselbarth, Grant Likely, Rob Herring,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Dear Linus Walleij,
On Mon, 14 Oct 2013 09:08:11 +0200, Linus Walleij wrote:
> Please include Thomas & Sebastian on the To: line when posting
> patches to this driver.
... and you should quote the entire e-mail so it's easier for us to see
what it is all about :-))
Sebastian, the original e-mail is at
http://www.spinics.net/lists/kernel/msg1618853.html.
Since this is a Dove-specific pinctrl issue, and Sebastian is the one
knowing about Dove, I'll let him answer.
Best regards,
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-10-14 7:12 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-13 23:27 [PATCH] unset twsi option3 for gconfig as well Roel Kluin
[not found] ` <1381706847-32762-1-git-send-email-roel.kluin-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2013-10-14 7:08 ` Linus Walleij
[not found] ` <CACRpkdb8ibOm61D_iGkOkbas1475n4k5jptnRH7VFk=9+pipHQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2013-10-14 7:12 ` Thomas Petazzoni
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).