From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.linuxfoundation.org ([140.211.169.12]:51399 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751956AbcDQLL2 (ORCPT ); Sun, 17 Apr 2016 07:11:28 -0400 Subject: Patch "pinctrl: nomadik: fix pull debug print inversion" has been added to the 4.4-stable tree To: linus.walleij@linaro.org, gregkh@linuxfoundation.org Cc: , From: Date: Sun, 17 Apr 2016 03:32:43 -0700 Message-ID: <1460889163153229@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org List-ID: This is a note to let you know that I've just added the patch titled pinctrl: nomadik: fix pull debug print inversion to the 4.4-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: pinctrl-nomadik-fix-pull-debug-print-inversion.patch and it can be found in the queue-4.4 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let know about it. >>From 6ee334559324a55725e22463de633b99ad99fcad Mon Sep 17 00:00:00 2001 From: Linus Walleij Date: Thu, 24 Mar 2016 13:15:45 +0100 Subject: pinctrl: nomadik: fix pull debug print inversion From: Linus Walleij commit 6ee334559324a55725e22463de633b99ad99fcad upstream. Pull up was reported as pull down and vice versa. Fix this. Fixes: 8f1774a2a971 "pinctrl: nomadik: improve GPIO debug prints" Signed-off-by: Linus Walleij Signed-off-by: Greg Kroah-Hartman --- drivers/pinctrl/nomadik/pinctrl-nomadik.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/pinctrl/nomadik/pinctrl-nomadik.c +++ b/drivers/pinctrl/nomadik/pinctrl-nomadik.c @@ -995,7 +995,7 @@ static void nmk_gpio_dbg_show_one(struct int val; if (pull) - pullidx = data_out ? 1 : 2; + pullidx = data_out ? 2 : 1; seq_printf(s, " gpio-%-3d (%-20.20s) in %s %s", gpio, Patches currently in stable-queue which might be from linus.walleij@linaro.org are queue-4.4/pinctrl-nomadik-fix-pull-debug-print-inversion.patch queue-4.4/pinctrl-pistachio-fix-mfio84-89-function-description-and-pinmux.patch queue-4.4/pinctrl-sunxi-fix-a33-external-interrupts-not-working.patch queue-4.4/pcmcia-db1xxx_ss-fix-last-irq_to_gpio-user.patch queue-4.4/pinctrl-freescale-imx-fix-bogus-check-of-of_iomap-return-value.patch queue-4.4/pinctrl-sh-pfc-only-use-dummy-states-for-non-dt-platforms.patch