From patchwork Tue Sep 11 17:46:39 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matt Porter X-Patchwork-Id: 1439461 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 C384F3FC33 for ; Tue, 11 Sep 2012 17:55:19 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1TBUZQ-0003mM-91; Tue, 11 Sep 2012 17:48:21 +0000 Received: from mail-gh0-f177.google.com ([209.85.160.177]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1TBUWo-00024H-1B for linux-arm-kernel@lists.infradead.org; Tue, 11 Sep 2012 17:45:40 +0000 Received: by ghbf20 with SMTP id f20so160490ghb.36 for ; Tue, 11 Sep 2012 10:45:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=0/eVaJr/vozFCHkmx+Pzk1OagSHhco8VvxMrk1puDUE=; b=mJqSC+klWJAt8TLgcPQ0cmDCtoGIakiFLi8/mUkmEuPmHzIogGmHDMveFY4+EyZb47 1NdXJtb23f5S4jPC6WeyImM0moHx7lzxhDEJoVfpH8fEq+l+Y9ZFqKGdFArvcffq7o9t FV7hAOQfxmMdDUnl6LViOE2zNXwzTCxkr/fwAX6L+LxPYmoxnlA5GB/e8YjXGG7qzYHp K+lH2NDMHRIEW7URxN0WG/Pz3cOld2VQsdRMq+SFTQlEuheM/X1eJhrF3+1Z6sJkwb2J edtMAO2sYYruSoDkXUUPVX8J5Rn9BcRaHJTozVPmiNBs3FkXHA/MOK6IFInm2EFRfwAm 60Wg== Received: by 10.236.191.233 with SMTP id g69mr16486599yhn.113.1347385536517; Tue, 11 Sep 2012 10:45:36 -0700 (PDT) Received: from beef.ohporter.com (cpe-24-166-64-7.neo.res.rr.com. [24.166.64.7]) by mx.google.com with ESMTPS id x4sm31156071yhh.2.2012.09.11.10.45.34 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 11 Sep 2012 10:45:35 -0700 (PDT) From: Matt Porter To: Linux OMAP List , Linux SPI Devel List , Grant Likely , Tony Lindgren Subject: [PATCH 2/2] ARM: OMAP2+: Enable pinctrl dummy states Date: Tue, 11 Sep 2012 13:46:39 -0400 Message-Id: <1347385599-27558-3-git-send-email-mporter@ti.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1347385599-27558-1-git-send-email-mporter@ti.com> References: <1347385599-27558-1-git-send-email-mporter@ti.com> 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.177 listed in list.dnswl.org] 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (ohiomdp[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_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: AnilKumar , Linux Kernel Mailing List , Linux ARM Kernel List 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 Enable pinctrl dummy states for all OMAP platforms. This allows drivers to be converted to pinctrl while still running on platforms that do not provide pinctrl data. Signed-off-by: Matt Porter --- arch/arm/mach-omap2/devices.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/arch/arm/mach-omap2/devices.c b/arch/arm/mach-omap2/devices.c index c00c689..577cd04 100644 --- a/arch/arm/mach-omap2/devices.c +++ b/arch/arm/mach-omap2/devices.c @@ -17,6 +17,7 @@ #include #include #include +#include #include #include @@ -631,6 +632,9 @@ static inline void omap_init_vout(void) {} static int __init omap2_init_devices(void) { + /* Enable dummy states for those platforms without pinctrl support */ + pinctrl_provide_dummies(); + /* * please keep these calls, and their implementations above, * in alphabetical order so they're easier to sort through.