From patchwork Thu Aug 25 13:48:31 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Daniel_Gl=C3=B6ckner?= X-Patchwork-Id: 662807 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 3sKm3T0hKMz9sRB for ; Thu, 25 Aug 2016 23:58:13 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934381AbcHYN6L (ORCPT ); Thu, 25 Aug 2016 09:58:11 -0400 Received: from mx1.emlix.com ([88.198.252.230]:40322 "EHLO mx1.emlix.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934212AbcHYN6L (ORCPT ); Thu, 25 Aug 2016 09:58:11 -0400 X-Greylist: delayed 533 seconds by postgrey-1.27 at vger.kernel.org; Thu, 25 Aug 2016 09:58:11 EDT Received: from mailer.emlix.com (unknown [80.150.94.234]) (using TLSv1.2 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mx1.emlix.com (Postfix) with ESMTPS id 85A7823EEDB; Thu, 25 Aug 2016 15:49:15 +0200 (CEST) Received: by mailer.emlix.com id 1bcv4p-0003M6-1E; Thu, 25 Aug 2016 15:52:15 +0200 Received: by devpool05.emlix.com (Postfix, from userid 2059) id 88C7A35D41; Thu, 25 Aug 2016 15:49:04 +0200 (CEST) From: =?UTF-8?q?Daniel=20Gl=C3=B6ckner?= To: Linus Walleij Cc: =?UTF-8?q?S=C3=B6ren=20Brinkmann?= , linux-gpio@vger.kernel.org, =?UTF-8?q?Daniel=20Gl=C3=B6ckner?= Subject: [PATCH] pinctrl: zynq: fix typo in sdio1_3_grp pin list Date: Thu, 25 Aug 2016 15:48:31 +0200 Message-Id: <1472132911-28380-1-git-send-email-dg@emlix.com> MIME-Version: 1.0 Organization: emlix gmbh, Goettingen, Germany Sender: linux-gpio-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-gpio@vger.kernel.org It contains pin 50 instead of pin 40. Signed-off-by: Daniel Glöckner Reviewed-by: Sören Brinkmann --- drivers/pinctrl/pinctrl-zynq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/pinctrl/pinctrl-zynq.c b/drivers/pinctrl/pinctrl-zynq.c index 7afdbed..e0ecffc 100644 --- a/drivers/pinctrl/pinctrl-zynq.c +++ b/drivers/pinctrl/pinctrl-zynq.c @@ -233,7 +233,7 @@ static const unsigned int sdio0_2_pins[] = {40, 41, 42, 43, 44, 45}; static const unsigned int sdio1_0_pins[] = {10, 11, 12, 13, 14, 15}; static const unsigned int sdio1_1_pins[] = {22, 23, 24, 25, 26, 27}; static const unsigned int sdio1_2_pins[] = {34, 35, 36, 37, 38, 39}; -static const unsigned int sdio1_3_pins[] = {46, 47, 48, 49, 40, 51}; +static const unsigned int sdio1_3_pins[] = {46, 47, 48, 49, 50, 51}; static const unsigned int sdio0_emio_wp_pins[] = {54}; static const unsigned int sdio0_emio_cd_pins[] = {55}; static const unsigned int sdio1_emio_wp_pins[] = {56};