Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753226AbZK3DRe (ORCPT ); Sun, 29 Nov 2009 22:17:34 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752458AbZK3DRd (ORCPT ); Sun, 29 Nov 2009 22:17:33 -0500 Received: from mail-qy0-f194.google.com ([209.85.221.194]:37510 "EHLO mail-qy0-f194.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752185AbZK3DRc convert rfc822-to-8bit (ORCPT ); Sun, 29 Nov 2009 22:17:32 -0500 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; b=pl/eGHs18t8bSVxx72mFbQmSMZhw9mOHJ1zBcjHBQ0S29MVT+DuZ/TANCDaOyc3c/2 GFyFmsuYl/0q51dcVUXOXxHoZQ3U1rCXfzd73AymgxCkCrNREldONKoZGyfR/cB5cMMf BYUibAQ7T8CFcBMRJSTfPTFELOEq+hBXK5cq8= MIME-Version: 1.0 In-Reply-To: <20091130131627.8ccc6033.sfr@canb.auug.org.au> References: <20091130131627.8ccc6033.sfr@canb.auug.org.au> From: Eric Miao Date: Mon, 30 Nov 2009 11:17:08 +0800 Message-ID: Subject: Re: linux-next: manual merge of the pcmcia tree with the pxa tree To: Marc Zyngier , Stephen Rothwell Cc: Dominik Brodowski , linux-next@vger.kernel.org, linux-kernel@vger.kernel.org, Russell King - ARM Linux Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8BIT Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2716 Lines: 70 Hi Marc, Could you take a look into this, I wonder you may need to rebase against Russell's PCMCIA generalization stuffs. Let me know if you want me to drop this patch. - eric On Mon, Nov 30, 2009 at 10:16 AM, Stephen Rothwell wrote: > Hi Dominik, > > Today's linux-next merge of the pcmcia tree got a conflict in drivers/pcmcia/pxa2xx_viper.c between commit c9b74a4489db7e6fe03fbee11f406b9641baae55 ("[ARM] pxa/zeus: make Viper pcmcia support more generic to support Zeus") from the pxa tree and commit 66024db57d5b9011e274b314affad68f370c0d6f ("PCMCIA: stop duplicating pci_irq in soc_pcmcia_socket") from the pcmcia tree. > > I fixed it up (see below) and can carry the fix as necessary. > -- > Cheers, > Stephen Rothwell                    sfr@canb.auug.org.au > > diff --cc drivers/pcmcia/pxa2xx_viper.c > index 7a16ae9,27be2e1..0000000 > --- a/drivers/pcmcia/pxa2xx_viper.c > +++ b/drivers/pcmcia/pxa2xx_viper.c > @@@ -30,35 -32,23 +30,35 @@@ >  #include "soc_common.h" >  #include "pxa2xx_base.h" > >  +static struct platform_device *arcom_pcmcia_dev; >  + >  static struct pcmcia_irqs irqs[] = { >  -      { 0, gpio_to_irq(VIPER_CF_CD_GPIO),  "PCMCIA_CD" } >  +      { >  +              .sock   = 0, >  +              .str    = "PCMCIA_CD", >  +      }, >  }; > >  +static inline struct arcom_pcmcia_pdata *viper_get_pdata(void) >  +{ >  +      return arcom_pcmcia_dev->dev.platform_data; >  +} >  + >  static int viper_pcmcia_hw_init(struct soc_pcmcia_socket *skt) >  { >  +      struct arcom_pcmcia_pdata *pdata = viper_get_pdata(); >        unsigned long flags; > > -       skt->irq = gpio_to_irq(pdata->rdy_gpio); >  -      skt->socket.pci_irq = gpio_to_irq(VIPER_CF_RDY_GPIO); > ++      skt->socket.pci_irq = gpio_to_irq(pdata->rdy_gpio); >  +      irqs[0].irq = gpio_to_irq(pdata->cd_gpio); > >  -      if (gpio_request(VIPER_CF_CD_GPIO, "CF detect")) >  +      if (gpio_request(pdata->cd_gpio, "CF detect")) >                goto err_request_cd; > >  -      if (gpio_request(VIPER_CF_RDY_GPIO, "CF ready")) >  +      if (gpio_request(pdata->rdy_gpio, "CF ready")) >                goto err_request_rdy; > >  -      if (gpio_request(VIPER_CF_POWER_GPIO, "CF power")) >  +      if (gpio_request(pdata->pwr_gpio, "CF power")) >                goto err_request_pwr; > >        local_irq_save(flags); > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/