From patchwork Thu Oct 18 09:06:56 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Haojian Zhuang X-Patchwork-Id: 1608681 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 CCD473FE36 for ; Thu, 18 Oct 2012 09:08:31 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1TOm3k-0001PB-5N; Thu, 18 Oct 2012 09:06:32 +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 1TOm3b-0001Ne-SO for linux-arm-kernel@lists.infradead.org; Thu, 18 Oct 2012 09:06:25 +0000 Received: by mail-pb0-f49.google.com with SMTP id xa7so8472078pbc.36 for ; Thu, 18 Oct 2012 02:06:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; bh=RH4wAtfkliVpxm3vho2rCY4LGg48vUGZPqqaHOmI0fU=; b=krpUqkEIvVYX1j+3XjI07xKMz2+fvVdRqBcDW9aiBWqep6fUYMNsvpl4NBDMaAJ13n en02vUQcpm0hhvdgKMnnssQVM6xj9wHrBH7ZdcQXUZEg7mE9j67k/mMiRbgyF+SfbwZa 28VXnXY67oqWH3AFlcI9lIpJjKe2mkvfus6i53fmQepWU/cu8Xh/86Q0I2F77OTp6yQW mtaN3v2jiYskfilr2yGV7z/6EwEZAOTbsoj+lomGI7AUX2jZkXRX7V0yqg53DZ0zLvQe ZXOuBTUG4YtPNczWUV1RHOgtfu3nUa5uYDjynADzsuUIbeX2KM5BVI3Uzt1pqmnaRxAM yhlw== Received: by 10.68.189.132 with SMTP id gi4mr63836273pbc.111.1350551182293; Thu, 18 Oct 2012 02:06:22 -0700 (PDT) Received: from localhost ([58.39.221.134]) by mx.google.com with ESMTPS id tw2sm12744264pbc.34.2012.10.18.02.06.18 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 18 Oct 2012 02:06:21 -0700 (PDT) From: Haojian Zhuang To: linux-arm-kernel@lists.infradead.org, arnd@arndb.de, linus.walleij@linaro.org, tony@atomide.com, devicetree-discuss@lists.ozlabs.org Subject: [PATCH 02/10] ARM: mmp: select pinctrl driver Date: Thu, 18 Oct 2012 17:06:56 +0800 Message-Id: <1350551224-12857-2-git-send-email-haojian.zhuang@gmail.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1350551224-12857-1-git-send-email-haojian.zhuang@gmail.com> References: <1350551224-12857-1-git-send-email-haojian.zhuang@gmail.com> X-Spam-Note: CRM114 invocation failed X-Spam-Score: -2.7 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.7 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] 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (haojian.zhuang[at]gmail.com) -0.0 SPF_PASS SPF: sender matches SPF record -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature Cc: Haojian Zhuang 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 Pinctrl driver is necessary for MMP DT & MMP2 DT platforms. Signed-off-by: Haojian Zhuang --- arch/arm/mach-mmp/Kconfig | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-mmp/Kconfig b/arch/arm/mach-mmp/Kconfig index 7fddd01..c70c787 100644 --- a/arch/arm/mach-mmp/Kconfig +++ b/arch/arm/mach-mmp/Kconfig @@ -89,6 +89,7 @@ config MACH_MMP_DT select CPU_PXA168 select CPU_PXA910 select USE_OF + select PINCTRL help Include support for Marvell MMP2 based platforms using the device tree. Needn't select any other machine while @@ -99,6 +100,7 @@ config MACH_MMP2_DT depends on !CPU_MOHAWK select CPU_MMP2 select USE_OF + select PINCTRL help Include support for Marvell MMP2 based platforms using the device tree.