From patchwork Sat Oct 27 09:17:49 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Viresh Kumar X-Patchwork-Id: 1654681 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork1.kernel.org (Postfix) with ESMTP id 378E33FD4F for ; Sat, 27 Oct 2012 09:20:50 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1TS2Xs-0007To-1k; Sat, 27 Oct 2012 09:19:08 +0000 Received: from mail-pb0-f49.google.com ([209.85.160.49]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1TS2XA-0007HD-Pq for linux-arm-kernel@lists.infradead.org; Sat, 27 Oct 2012 09:18:25 +0000 Received: by mail-pb0-f49.google.com with SMTP id xa7so2999974pbc.36 for ; Sat, 27 Oct 2012 02:18:24 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references :in-reply-to:references:x-gm-message-state; bh=QIQaxZbwzRc4lEihrpp0M5/CB/NMP9DojgM1YISEy9E=; b=iHeeDoWMLgKf+wyRLUQbXHt9ig4QAfYAc77n0RADGbx94YoLS2LdyGYPlYPuQ8Pka9 6TOuqxAHyJ+dei1q29aKIrdVrZ827Um/rjkLjChPR4nIa4eVBZ7g5AOMb8+DgNHN4rP1 cMwqgYIOkjNTTboK9D7AWM+S0B0pxipOAYZSLdW3EkbC301nW7XuxsK4yGyPQApEptNZ Ac1wUJ2rcGJzLR6kx9ow6n3p7nlzroHi+gydQ7TXY1yHxy/yVRfmL05TS80FybJ+jZhs YOh2BwsvXROraHG9MxEJHDpg6nRE+YgHwM9zAxWPMz1iB9K/l8Mf46OZBcHEZYg5eZWq yqSQ== Received: by 10.68.135.234 with SMTP id pv10mr76352595pbb.156.1351329504539; Sat, 27 Oct 2012 02:18:24 -0700 (PDT) Received: from localhost ([122.167.99.215]) by mx.google.com with ESMTPS id vw4sm2560091pbc.26.2012.10.27.02.18.22 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 27 Oct 2012 02:18:24 -0700 (PDT) From: Viresh Kumar To: linus.walleij@linaro.org Subject: [PATCH 4/9] pinctrl: SPEAr1310: fix clcd high resolution pin group name Date: Sat, 27 Oct 2012 14:47:49 +0530 Message-Id: <15832cbb66c39a79bae5c42feae12cd30207cd45.1351329224.git.viresh.kumar@linaro.org> X-Mailer: git-send-email 1.7.12.rc2.18.g61b472e In-Reply-To: References: In-Reply-To: References: X-Gm-Message-State: ALoCoQkan8VN2ZfLnRw0bA7TFVrZjFwaWi7Z+shucEdMZlIbmcP/DoqqeJciu2AjGXYHndp6uf6y X-Spam-Note: CRM114 invocation failed X-Spam-Score: -2.6 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.6 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [209.85.160.49 listed in list.dnswl.org] -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: Shiraz Hashim , spear-devel@list.st.com, linux-arm-kernel@lists.infradead.org, Viresh Kumar X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org From: Shiraz Hashim All group names in SPEAr pinctrl have "_grp" at the end of their name. Do the same for clcd_high_res_grp. Signed-off-by: Shiraz Hashim Signed-off-by: Viresh Kumar --- drivers/pinctrl/spear/pinctrl-spear1310.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/pinctrl/spear/pinctrl-spear1310.c b/drivers/pinctrl/spear/pinctrl-spear1310.c index d6cca8c..c720d09 100644 --- a/drivers/pinctrl/spear/pinctrl-spear1310.c +++ b/drivers/pinctrl/spear/pinctrl-spear1310.c @@ -461,7 +461,7 @@ static struct spear_pingroup clcd_high_res_pingroup = { .nmodemuxs = ARRAY_SIZE(clcd_high_res_modemux), }; -static const char *const clcd_grps[] = { "clcd_grp", "clcd_high_res" }; +static const char *const clcd_grps[] = { "clcd_grp", "clcd_high_res_grp" }; static struct spear_function clcd_function = { .name = "clcd", .groups = clcd_grps,