sa11xx_base.c (2d8ad8719591fa803b0d589ed057fa46f49b7155) | sa11xx_base.c (e0d21178ceb06f5bfa81a5697f68384f74af054a) |
---|---|
1/*====================================================================== 2 3 Device driver for the PCMCIA control functionality of StrongARM 4 SA-1100 microprocessors. 5 6 The contents of this file are subject to the Mozilla Public 7 License Version 1.1 (the "License"); you may not use this file 8 except in compliance with the License. You may obtain a copy of --- 222 unchanged lines hidden (view full) --- 231 232 sinfo->nskt = nr; 233 234 /* Initialize processor specific parameters */ 235 for (i = 0; i < nr; i++) { 236 skt = &sinfo->skt[i]; 237 238 skt->nr = first + i; | 1/*====================================================================== 2 3 Device driver for the PCMCIA control functionality of StrongARM 4 SA-1100 microprocessors. 5 6 The contents of this file are subject to the Mozilla Public 7 License Version 1.1 (the "License"); you may not use this file 8 except in compliance with the License. You may obtain a copy of --- 222 unchanged lines hidden (view full) --- 231 232 sinfo->nskt = nr; 233 234 /* Initialize processor specific parameters */ 235 for (i = 0; i < nr; i++) { 236 skt = &sinfo->skt[i]; 237 238 skt->nr = first + i; |
239 skt->ops = ops; 240 skt->socket.owner = ops->owner; 241 skt->socket.dev.parent = dev; 242 skt->socket.pci_irq = NO_IRQ; | 239 soc_pcmcia_init_one(skt, ops, dev); |
243 244 ret = sa11xx_drv_pcmcia_add_one(skt); 245 if (ret) 246 break; 247 } 248 249 if (ret) { 250 while (--i >= 0) --- 23 unchanged lines hidden --- | 240 241 ret = sa11xx_drv_pcmcia_add_one(skt); 242 if (ret) 243 break; 244 } 245 246 if (ret) { 247 while (--i >= 0) --- 23 unchanged lines hidden --- |