aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pcmcia/pxa2xx_stargate2.c
diff options
context:
space:
mode:
authorEric Miao <eric.y.miao@gmail.com>2009-12-09 18:54:05 +0800
committerRussell King <rmk+kernel@arm.linux.org.uk>2009-12-13 16:33:13 +0000
commit002939729c7c8f6448e89e9e86c8c5bf6f0c77d3 (patch)
tree66a5c7b64da1d4f3b66728accb9e95983df6722b /drivers/pcmcia/pxa2xx_stargate2.c
parentPCMCIA: fix pxa2xx_lubbock modular build error (diff)
downloadlinux-dev-002939729c7c8f6448e89e9e86c8c5bf6f0c77d3.tar.xz
linux-dev-002939729c7c8f6448e89e9e86c8c5bf6f0c77d3.zip
ARM: pxa: fix now incorrect reference of skt->irq by using skt->socket.pci_irq
commit 66024db removes all other references of skt->irq by using skt->socket.pci_irq, while leaving these two missed. Get them fixed. Signed-off-by: Eric Miao <eric.y.miao@gmail.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'drivers/pcmcia/pxa2xx_stargate2.c')
-rw-r--r--drivers/pcmcia/pxa2xx_stargate2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pcmcia/pxa2xx_stargate2.c b/drivers/pcmcia/pxa2xx_stargate2.c
index 490749ea677f..d08802fe35f9 100644
--- a/drivers/pcmcia/pxa2xx_stargate2.c
+++ b/drivers/pcmcia/pxa2xx_stargate2.c
@@ -40,7 +40,7 @@ static struct pcmcia_irqs irqs[] = {
static int sg2_pcmcia_hw_init(struct soc_pcmcia_socket *skt)
{
- skt->irq = IRQ_GPIO(SG2_S0_GPIO_READY);
+ skt->socket.pci_irq = IRQ_GPIO(SG2_S0_GPIO_READY);
return soc_pcmcia_request_irqs(skt, irqs, ARRAY_SIZE(irqs));
}