diff options
author | Shawn Guo <shawn.guo@linaro.org> | 2011-12-02 07:00:33 -0500 |
---|---|---|
committer | Shawn Guo <shawn.guo@linaro.org> | 2012-07-01 09:57:06 -0400 |
commit | ed175343b4b53d686e30b1e37fb94e142f56fa2f (patch) | |
tree | c7d8c37edafa9d6f9c06034bbb6a9c7bf00dfe7f /arch/arm/mach-imx/mach-qong.c | |
parent | 84715dd6c19e058557ab173d327ea65eac0ccb02 (diff) |
ARM: imx: eliminate macro IOMUX_TO_IRQ()
This patch changes all the static gpio irq number assigning with
IOMUX_TO_IRQ() to run-time assigning with gpio_to_irq call, and
in turn eliminates the macro IOMUX_TO_IRQ().
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Acked-by: Sascha Hauer <s.hauer@pengutronix.de>
Acked-by: Dong Aisheng <dong.aisheng@linaro.org>
Diffstat (limited to 'arch/arm/mach-imx/mach-qong.c')
-rw-r--r-- | arch/arm/mach-imx/mach-qong.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/arch/arm/mach-imx/mach-qong.c b/arch/arm/mach-imx/mach-qong.c index 260621055b6b..b6f11d25f25a 100644 --- a/arch/arm/mach-imx/mach-qong.c +++ b/arch/arm/mach-imx/mach-qong.c | |||
@@ -51,8 +51,6 @@ | |||
51 | (QONG_FPGA_BASEADDR + QONG_DNET_ID * QONG_FPGA_PERIPH_SIZE) | 51 | (QONG_FPGA_BASEADDR + QONG_DNET_ID * QONG_FPGA_PERIPH_SIZE) |
52 | #define QONG_DNET_SIZE 0x00001000 | 52 | #define QONG_DNET_SIZE 0x00001000 |
53 | 53 | ||
54 | #define QONG_FPGA_IRQ IOMUX_TO_IRQ(MX31_PIN_DTR_DCE1) | ||
55 | |||
56 | static const struct imxuart_platform_data uart_pdata __initconst = { | 54 | static const struct imxuart_platform_data uart_pdata __initconst = { |
57 | .flags = IMXUART_HAVE_RTSCTS, | 55 | .flags = IMXUART_HAVE_RTSCTS, |
58 | }; | 56 | }; |
@@ -78,8 +76,7 @@ static struct resource dnet_resources[] = { | |||
78 | .end = QONG_DNET_BASEADDR + QONG_DNET_SIZE - 1, | 76 | .end = QONG_DNET_BASEADDR + QONG_DNET_SIZE - 1, |
79 | .flags = IORESOURCE_MEM, | 77 | .flags = IORESOURCE_MEM, |
80 | }, { | 78 | }, { |
81 | .start = QONG_FPGA_IRQ, | 79 | /* irq number is run-time assigned */ |
82 | .end = QONG_FPGA_IRQ, | ||
83 | .flags = IORESOURCE_IRQ, | 80 | .flags = IORESOURCE_IRQ, |
84 | }, | 81 | }, |
85 | }; | 82 | }; |
@@ -95,6 +92,10 @@ static int __init qong_init_dnet(void) | |||
95 | { | 92 | { |
96 | int ret; | 93 | int ret; |
97 | 94 | ||
95 | dnet_resources[1].start = | ||
96 | gpio_to_irq(IOMUX_TO_GPIO(MX31_PIN_DTR_DCE1)); | ||
97 | dnet_resources[1].end = | ||
98 | gpio_to_irq(IOMUX_TO_GPIO(MX31_PIN_DTR_DCE1)); | ||
98 | ret = platform_device_register(&dnet_device); | 99 | ret = platform_device_register(&dnet_device); |
99 | return ret; | 100 | return ret; |
100 | } | 101 | } |