aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-imx/mach-pca100.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/mach-imx/mach-pca100.c')
-rw-r--r--arch/arm/mach-imx/mach-pca100.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-imx/mach-pca100.c b/arch/arm/mach-imx/mach-pca100.c
index 541152e450c4..8b1dfa277fd5 100644
--- a/arch/arm/mach-imx/mach-pca100.c
+++ b/arch/arm/mach-imx/mach-pca100.c
@@ -245,7 +245,7 @@ static int pca100_sdhc2_init(struct device *dev, irq_handler_t detect_irq,
245{ 245{
246 int ret; 246 int ret;
247 247
248 ret = request_irq(IRQ_GPIOC(29), detect_irq, 248 ret = request_irq(gpio_to_irq(IMX_GPIO_NR(3, 29)), detect_irq,
249 IRQF_DISABLED | IRQF_TRIGGER_FALLING, 249 IRQF_DISABLED | IRQF_TRIGGER_FALLING,
250 "imx-mmc-detect", data); 250 "imx-mmc-detect", data);
251 if (ret) 251 if (ret)
@@ -257,7 +257,7 @@ static int pca100_sdhc2_init(struct device *dev, irq_handler_t detect_irq,
257 257
258static void pca100_sdhc2_exit(struct device *dev, void *data) 258static void pca100_sdhc2_exit(struct device *dev, void *data)
259{ 259{
260 free_irq(IRQ_GPIOC(29), data); 260 free_irq(gpio_to_irq(IMX_GPIO_NR(3, 29)), data);
261} 261}
262 262
263static const struct imxmmc_platform_data sdhc_pdata __initconst = { 263static const struct imxmmc_platform_data sdhc_pdata __initconst = {