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: 1439231 Return-Path: X-Original-To: patchwork-linux-omap@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id 11B713FC33 for ; Tue, 11 Sep 2012 17:46:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755964Ab2IKRpj (ORCPT ); Tue, 11 Sep 2012 13:45:39 -0400 Received: from mail-gh0-f174.google.com ([209.85.160.174]:60696 "EHLO mail-gh0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754131Ab2IKRph (ORCPT ); Tue, 11 Sep 2012 13:45:37 -0400 Received: by mail-gh0-f174.google.com with SMTP id g15so152829ghb.19 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 Cc: Linux Kernel Mailing List , Linux ARM Kernel List , AnilKumar 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> Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.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.