From patchwork Mon Sep 17 17:22:18 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matt Porter X-Patchwork-Id: 1468531 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 D01C03FE79 for ; Mon, 17 Sep 2012 17:21:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756062Ab2IQRV2 (ORCPT ); Mon, 17 Sep 2012 13:21:28 -0400 Received: from mail-yw0-f46.google.com ([209.85.213.46]:39717 "EHLO mail-yw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756016Ab2IQRUx (ORCPT ); Mon, 17 Sep 2012 13:20:53 -0400 Received: by mail-yw0-f46.google.com with SMTP id m54so1567309yhm.19 for ; Mon, 17 Sep 2012 10:20:53 -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=2QnEjzrZu1L0VWZIw3rJBaeTGLZg9KSmErLhjPv690g=; b=E3svW9xZ20iNqBQ35WQJA3vltcvaC2SZ489uaRU1/ux3Q4WLO2hw74tDv/mtOumcHV hRFFyt2+9CXAzXkaxJ3APp9KJz7bI1WIMBkxpXPy5QmdyMfCjN3xBx26Leub7YbuysmM pLLZB8K8vjvpE77rsUgKVwEn0Z//9qR+ms2tppTJiGo5XO3zPy3t2/6hHVxpc5YIsZfv MAntv4QYs/HH7nyEwJkKy9jHwoYlkt7lltKG77kuSzAqVmEzUl4BXgvFeQalOX3QwMmC hA0Xt0pegU1joD8Fey2QBrvwj4XTL9yojRwL/MvFPEyztEbACLjej6gxMDMMV/nwjD2e iqbA== Received: by 10.236.153.39 with SMTP id e27mr12517192yhk.130.1347902453190; Mon, 17 Sep 2012 10:20:53 -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 c64sm14914329yhj.17.2012.09.17.10.20.51 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 17 Sep 2012 10:20:52 -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 v2 2/2] ARM: OMAP2+: Enable pinctrl dummy states Date: Mon, 17 Sep 2012 13:22:18 -0400 Message-Id: <1347902538-21208-3-git-send-email-mporter@ti.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1347902538-21208-1-git-send-email-mporter@ti.com> References: <1347902538-21208-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 that don't populate DT. This allows drivers to be converted to pinctrl and not generate new warnings on platforms that do not provide pinctrl data. These platforms already have pinmuxes configured before the drivers probe. Signed-off-by: Matt Porter Acked-by: Linus Walleij --- arch/arm/mach-omap2/devices.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/arch/arm/mach-omap2/devices.c b/arch/arm/mach-omap2/devices.c index 1efa984..6ef4010 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 @@ -628,6 +629,10 @@ static inline void omap_init_vout(void) {} static int __init omap2_init_devices(void) { + /* Enable dummy states for those platforms without pinctrl support */ + if (!of_have_populated_dt()) + pinctrl_provide_dummies(); + /* * please keep these calls, and their implementations above, * in alphabetical order so they're easier to sort through.