diff options
author | Eric Miao <eric.y.miao@gmail.com> | 2009-12-09 05:54:05 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2009-12-13 11:33:13 -0500 |
commit | 002939729c7c8f6448e89e9e86c8c5bf6f0c77d3 (patch) | |
tree | 66a5c7b64da1d4f3b66728accb9e95983df6722b /drivers/pcmcia/pxa2xx_palmtc.c | |
parent | d0d26c33b63c7ec10c3fdf9c7ce0aa035f0b3200 (diff) |
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_palmtc.c')
-rw-r--r-- | drivers/pcmcia/pxa2xx_palmtc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pcmcia/pxa2xx_palmtc.c b/drivers/pcmcia/pxa2xx_palmtc.c index 3a8993ed5621..459a232d66be 100644 --- a/drivers/pcmcia/pxa2xx_palmtc.c +++ b/drivers/pcmcia/pxa2xx_palmtc.c | |||
@@ -67,7 +67,7 @@ static int palmtc_pcmcia_hw_init(struct soc_pcmcia_socket *skt) | |||
67 | if (ret) | 67 | if (ret) |
68 | goto err7; | 68 | goto err7; |
69 | 69 | ||
70 | skt->irq = IRQ_GPIO(GPIO_NR_PALMTC_PCMCIA_READY); | 70 | skt->socket.pci_irq = IRQ_GPIO(GPIO_NR_PALMTC_PCMCIA_READY); |
71 | return 0; | 71 | return 0; |
72 | 72 | ||
73 | err7: | 73 | err7: |