pxa2xx_base.c (da733563be5a9da26fe81d9f007262d00b846e22) pxa2xx_base.c (e0d21178ceb06f5bfa81a5697f68384f74af054a)
1/*======================================================================
2
3 Device driver for the PCMCIA control functionality of PXA2xx
4 microprocessors.
5
6 The contents of this file may be used under the
7 terms of the GNU Public License version 2 (the "GPL")
8

--- 304 unchanged lines hidden (view full) ---

313 sinfo->clk = clk;
314
315 /* Initialize processor specific parameters */
316 for (i = 0; i < ops->nr; i++) {
317 skt = &sinfo->skt[i];
318
319 skt->nr = ops->first + i;
320 skt->clk = clk;
1/*======================================================================
2
3 Device driver for the PCMCIA control functionality of PXA2xx
4 microprocessors.
5
6 The contents of this file may be used under the
7 terms of the GNU Public License version 2 (the "GPL")
8

--- 304 unchanged lines hidden (view full) ---

313 sinfo->clk = clk;
314
315 /* Initialize processor specific parameters */
316 for (i = 0; i < ops->nr; i++) {
317 skt = &sinfo->skt[i];
318
319 skt->nr = ops->first + i;
320 skt->clk = clk;
321 skt->ops = ops;
322 skt->socket.owner = ops->owner;
323 skt->socket.dev.parent = &dev->dev;
324 skt->socket.pci_irq = NO_IRQ;
321 soc_pcmcia_init_one(skt, ops, &dev->dev);
325
326 ret = pxa2xx_drv_pcmcia_add_one(skt);
327 if (ret)
328 goto err1;
329 }
330
331 if (ret) {
332 while (--i >= 0)

--- 70 unchanged lines hidden ---
322
323 ret = pxa2xx_drv_pcmcia_add_one(skt);
324 if (ret)
325 goto err1;
326 }
327
328 if (ret) {
329 while (--i >= 0)

--- 70 unchanged lines hidden ---