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/devices | |
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/devices')
-rw-r--r-- | arch/arm/mach-imx/devices/devices-common.h | 2 | ||||
-rw-r--r-- | arch/arm/mach-imx/devices/platform-imx-dma.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-imx/devices/devices-common.h b/arch/arm/mach-imx/devices/devices-common.h index e4368f6c5fb4..36eb3f09f5d7 100644 --- a/arch/arm/mach-imx/devices/devices-common.h +++ b/arch/arm/mach-imx/devices/devices-common.h | |||
@@ -329,7 +329,7 @@ struct platform_device *__init imx_add_spi_imx( | |||
329 | const struct imx_spi_imx_data *data, | 329 | const struct imx_spi_imx_data *data, |
330 | const struct spi_imx_master *pdata); | 330 | const struct spi_imx_master *pdata); |
331 | 331 | ||
332 | struct platform_device *imx_add_imx_dma(resource_size_t iobase, | 332 | struct platform_device *imx_add_imx_dma(char *name, resource_size_t iobase, |
333 | int irq, int irq_err); | 333 | int irq, int irq_err); |
334 | struct platform_device *imx_add_imx_sdma(char *name, | 334 | struct platform_device *imx_add_imx_sdma(char *name, |
335 | resource_size_t iobase, int irq, struct sdma_platform_data *pdata); | 335 | resource_size_t iobase, int irq, struct sdma_platform_data *pdata); |
diff --git a/arch/arm/mach-imx/devices/platform-imx-dma.c b/arch/arm/mach-imx/devices/platform-imx-dma.c index f9003e4d0f57..ccdb5dc4ddbd 100644 --- a/arch/arm/mach-imx/devices/platform-imx-dma.c +++ b/arch/arm/mach-imx/devices/platform-imx-dma.c | |||
@@ -8,7 +8,7 @@ | |||
8 | */ | 8 | */ |
9 | #include "devices-common.h" | 9 | #include "devices-common.h" |
10 | 10 | ||
11 | struct platform_device __init __maybe_unused *imx_add_imx_dma( | 11 | struct platform_device __init __maybe_unused *imx_add_imx_dma(char *name, |
12 | resource_size_t iobase, int irq, int irq_err) | 12 | resource_size_t iobase, int irq, int irq_err) |
13 | { | 13 | { |
14 | struct resource res[] = { | 14 | struct resource res[] = { |
@@ -28,7 +28,7 @@ struct platform_device __init __maybe_unused *imx_add_imx_dma( | |||
28 | }; | 28 | }; |
29 | 29 | ||
30 | return platform_device_register_resndata(&mxc_ahb_bus, | 30 | return platform_device_register_resndata(&mxc_ahb_bus, |
31 | "imx-dma", -1, res, ARRAY_SIZE(res), NULL, 0); | 31 | name, -1, res, ARRAY_SIZE(res), NULL, 0); |
32 | } | 32 | } |
33 | 33 | ||
34 | struct platform_device __init __maybe_unused *imx_add_imx_sdma(char *name, | 34 | struct platform_device __init __maybe_unused *imx_add_imx_sdma(char *name, |