From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tony Lindgren Subject: Re: [PATCH] ARM: OMAP: Fix MMC2 device configuration for OMAP2430 Date: Thu, 24 Apr 2008 14:30:00 -0700 Message-ID: <20080424213000.GK16834@atomide.com> References: <20080424192526.GA28609@ubuntu-workstation> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mho-01-bos.mailhop.org ([63.208.196.178]:53515 "EHLO mho-01-bos.mailhop.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752758AbYDXVaB (ORCPT ); Thu, 24 Apr 2008 17:30:01 -0400 Received: from c-69-181-40-92.hsd1.ca.comcast.net ([69.181.40.92] helo=localhost.localdomain) by mho-01-bos.mailhop.org with esmtpa (Exim 4.68) (envelope-from ) id 1Jp90y-000IoB-1z for linux-omap@vger.kernel.org; Thu, 24 Apr 2008 21:30:00 +0000 Content-Disposition: inline In-Reply-To: <20080424192526.GA28609@ubuntu-workstation> Sender: linux-omap-owner@vger.kernel.org List-Id: linux-omap@vger.kernel.org To: linux-omap@vger.kernel.org * Seth Forshee [080424 12:27]: > Currently the MMC2 device configuration is defined for OMAP2430 > when CONFIG_ARCH_OMAP243X is defined. This should be > CONFIG_ARCH_OMAP2430. Thanks, pushing today. Tony > Signed-off-by: Seth Forshee > --- > arch/arm/plat-omap/devices.c | 6 +++--- > 1 files changed, 3 insertions(+), 3 deletions(-) > > diff --git a/arch/arm/plat-omap/devices.c b/arch/arm/plat-omap/devices.c > index 6f07451..099182b 100644 > --- a/arch/arm/plat-omap/devices.c > +++ b/arch/arm/plat-omap/devices.c > @@ -202,7 +202,7 @@ static struct platform_device mmc_omap_device1 = { > .resource = mmc1_resources, > }; > > -#if defined(CONFIG_ARCH_OMAP16XX) || defined(CONFIG_ARCH_OMAP243X) || \ > +#if defined(CONFIG_ARCH_OMAP16XX) || defined(CONFIG_ARCH_OMAP2430) || \ > defined(CONFIG_ARCH_OMAP34XX) > > static struct omap_mmc_platform_data mmc2_data; > @@ -251,7 +251,7 @@ static void __init omap_init_mmc(void) > if (mmc->enabled) > (void) platform_device_register(&mmc_omap_device1); > > -#if defined(CONFIG_ARCH_OMAP243X) || defined(CONFIG_ARCH_OMAP34XX) > +#if defined(CONFIG_ARCH_OMAP2430) || defined(CONFIG_ARCH_OMAP34XX) > mmc = &mmc_conf->mmc[1]; > if (mmc->enabled) > (void) platform_device_register(&mmc_omap_device2); > @@ -349,7 +349,7 @@ void omap_set_mmc_info(int host, const struct omap_mmc_platform_data *info) > case 1: > mmc1_data = *info; > break; > -#if defined(CONFIG_ARCH_OMAP16XX) || defined(CONFIG_ARCH_OMAP243X) || \ > +#if defined(CONFIG_ARCH_OMAP16XX) || defined(CONFIG_ARCH_OMAP2430) || \ > defined(CONFIG_ARCH_OMAP34XX) > case 2: > mmc2_data = *info; > -- > To unsubscribe from this list: send the line "unsubscribe linux-omap" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html