From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.linuxfoundation.org ([140.211.169.12]:45057 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S964965AbbGZDwA (ORCPT ); Sat, 25 Jul 2015 23:52:00 -0400 Subject: Patch "pinctrl: mvebu: armada-39x: fix incorrect total number of GPIOs" has been added to the 4.1-stable tree To: thomas.petazzoni@free-electrons.com, gregkh@linuxfoundation.org, linus.walleij@linaro.org Cc: , From: Date: Sat, 25 Jul 2015 20:51:58 -0700 Message-ID: <14378827184910@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: mvebu: armada-39x: fix incorrect total number of GPIOs to the 4.1-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-mvebu-armada-39x-fix-incorrect-total-number-of-gpios.patch and it can be found in the queue-4.1 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let know about it. >>From 7c580311a2cb3bb0d0188665c9c69227aed650ea Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Tue, 9 Jun 2015 18:47:01 +0200 Subject: pinctrl: mvebu: armada-39x: fix incorrect total number of GPIOs From: Thomas Petazzoni commit 7c580311a2cb3bb0d0188665c9c69227aed650ea upstream. The pinctrl_gpio_range[] array described a first bank of 32 GPIOs and a second one of 27 GPIOs. However, since there is a total of 60 MPP pins that can be muxed as GPIOs, the second bank really has 28 GPIOs. Signed-off-by: Thomas Petazzoni Fixes: ee086577abe7f ("pinctrl: mvebu: add pinctrl driver for Marvell Armada 39x") Signed-off-by: Linus Walleij Signed-off-by: Greg Kroah-Hartman --- drivers/pinctrl/mvebu/pinctrl-armada-39x.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/pinctrl/mvebu/pinctrl-armada-39x.c +++ b/drivers/pinctrl/mvebu/pinctrl-armada-39x.c @@ -380,7 +380,7 @@ static struct mvebu_mpp_ctrl armada_39x_ static struct pinctrl_gpio_range armada_39x_mpp_gpio_ranges[] = { MPP_GPIO_RANGE(0, 0, 0, 32), - MPP_GPIO_RANGE(1, 32, 32, 27), + MPP_GPIO_RANGE(1, 32, 32, 28), }; static int armada_39x_pinctrl_probe(struct platform_device *pdev) Patches currently in stable-queue which might be from thomas.petazzoni@free-electrons.com are queue-4.1/pinctrl-mvebu-armada-xp-fix-functions-of-mpp48.patch queue-4.1/pinctrl-mvebu-armada-xp-remove-non-existing-nand-pins.patch queue-4.1/pinctrl-mvebu-armada-38x-fix-pcie-functions.patch queue-4.1/pinctrl-mvebu-armada-38x-fix-incorrect-total-number-of-gpios.patch queue-4.1/pinctrl-mvebu-armada-375-remove-incorrect-space-in-pin-description.patch queue-4.1/pinctrl-mvebu-armada-xp-remove-non-existing-vdd-cpu_pd-functions.patch queue-4.1/pinctrl-mvebu-armada-39x-fix-incorrect-total-number-of-gpios.patch queue-4.1/pinctrl-mvebu-armada-370-fix-spi0-pin-description.patch queue-4.1/pinctrl-mvebu-armada-375-remove-non-existing-nand-re-we-pins.patch