diff options
author | Shawn Guo <shawn.guo@linaro.org> | 2012-09-15 09:11:28 -0400 |
---|---|---|
committer | Shawn Guo <shawn.guo@linaro.org> | 2012-10-14 22:03:17 -0400 |
commit | e51d0f0ac4b7f513808743c6a62f0387eebd0144 (patch) | |
tree | 1efe37ce7bf87694ea8c79fe06256b131db5658d /arch/arm/mach-imx/mm-imx1.c | |
parent | 73930eb31b2ecb0177c9bf81a35b4d2d73716951 (diff) |
dma: imx-dma: remove cpu_is_xxx by using platform_device_id
It changes the driver to use platform_device_id rather than cpu_is_xxx
to determine the controller type, and updates the platform code
accordingly.
As the result, mach/hardware.h inclusion gets removed from the driver.
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Tested-by: Javier Martin <javier.martin@vista-silicon.com>
Cc: Vinod Koul <vinod.koul@linux.intel.com>
Diffstat (limited to 'arch/arm/mach-imx/mm-imx1.c')
-rw-r--r-- | arch/arm/mach-imx/mm-imx1.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-imx/mm-imx1.c b/arch/arm/mach-imx/mm-imx1.c index 9de81bf6de96..79f6c0b8f69f 100644 --- a/arch/arm/mach-imx/mm-imx1.c +++ b/arch/arm/mach-imx/mm-imx1.c | |||
@@ -60,6 +60,7 @@ void __init imx1_soc_init(void) | |||
60 | MX1_GPIO_INT_PORTC, 0); | 60 | MX1_GPIO_INT_PORTC, 0); |
61 | mxc_register_gpio("imx1-gpio", 3, MX1_GPIO4_BASE_ADDR, SZ_256, | 61 | mxc_register_gpio("imx1-gpio", 3, MX1_GPIO4_BASE_ADDR, SZ_256, |
62 | MX1_GPIO_INT_PORTD, 0); | 62 | MX1_GPIO_INT_PORTD, 0); |
63 | imx_add_imx_dma(MX1_DMA_BASE_ADDR, MX1_DMA_INT, MX1_DMA_ERR); | 63 | imx_add_imx_dma("imx1-dma", MX1_DMA_BASE_ADDR, |
64 | MX1_DMA_INT, MX1_DMA_ERR); | ||
64 | pinctrl_provide_dummies(); | 65 | pinctrl_provide_dummies(); |
65 | } | 66 | } |