From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756716Ab2IQR2y (ORCPT ); Mon, 17 Sep 2012 13:28:54 -0400 Received: from mho-03-ewr.mailhop.org ([204.13.248.66]:31878 "EHLO mho-01-ewr.mailhop.org" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1755861Ab2IQR2w (ORCPT ); Mon, 17 Sep 2012 13:28:52 -0400 X-Mail-Handler: Dyn Standard SMTP by Dyn X-Originating-IP: 98.234.237.12 X-Report-Abuse-To: abuse@dyndns.com (see http://www.dyndns.com/services/sendlabs/outbound_abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX1+xBbDBOZL0/nrnvISyWzYq Date: Mon, 17 Sep 2012 10:28:49 -0700 From: Tony Lindgren To: Matt Porter Cc: Linux OMAP List , Linux SPI Devel List , Grant Likely , Linux Kernel Mailing List , Linux ARM Kernel List , AnilKumar Subject: Re: [PATCH v2 2/2] ARM: OMAP2+: Enable pinctrl dummy states Message-ID: <20120917172849.GQ4521@atomide.com> References: <1347902538-21208-1-git-send-email-mporter@ti.com> <1347902538-21208-3-git-send-email-mporter@ti.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1347902538-21208-3-git-send-email-mporter@ti.com> User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Matt Porter [120917 10:21]: > 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. Thanks this should do the trick until we've converted to use DT. I'll queue this for the upcoming merge window. Regards, Tony > Signed-off-by: Matt Porter > --- > 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. > -- > 1.7.9.5 >