diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2010-09-09 15:02:02 -0400 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2010-10-01 03:32:14 -0400 |
commit | ab5605037c119f1bde0f01786ede16d0ea5dcd8a (patch) | |
tree | aa322bc687a516657ac806eddd768b2e12b6cbef /arch/arm/plat-mxc | |
parent | 0b599603d8534bc3946a0f07e461c76d7947dfcf (diff) |
ARM: imx: use platform ids for spi_imx devices
The driver recently learned to handle platform ids. Make use of this
new feature. The up side is that the driver needs less knowledge about
the spi interfaces used on different SoCs.
Acked-by: Jason Wang <jason77.wang@gmail.com>
Acked-by: Grant Likely <grant.likely@secretlab.ca>
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/plat-mxc')
-rw-r--r-- | arch/arm/plat-mxc/devices/platform-spi_imx.c | 3 | ||||
-rw-r--r-- | arch/arm/plat-mxc/include/mach/devices-common.h | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/plat-mxc/devices/platform-spi_imx.c b/arch/arm/plat-mxc/devices/platform-spi_imx.c index 412a81f24101..bd30d4b2b2f9 100644 --- a/arch/arm/plat-mxc/devices/platform-spi_imx.c +++ b/arch/arm/plat-mxc/devices/platform-spi_imx.c | |||
@@ -11,6 +11,7 @@ | |||
11 | 11 | ||
12 | #define imx_spi_imx_data_entry_single(soc, type, _devid, _id, hwid, _size) \ | 12 | #define imx_spi_imx_data_entry_single(soc, type, _devid, _id, hwid, _size) \ |
13 | { \ | 13 | { \ |
14 | .devid = _devid, \ | ||
14 | .id = _id, \ | 15 | .id = _id, \ |
15 | .iobase = soc ## _ ## type ## hwid ## _BASE_ADDR, \ | 16 | .iobase = soc ## _ ## type ## hwid ## _BASE_ADDR, \ |
16 | .iosize = _size, \ | 17 | .iosize = _size, \ |
@@ -83,6 +84,6 @@ struct platform_device *__init imx_add_spi_imx( | |||
83 | }, | 84 | }, |
84 | }; | 85 | }; |
85 | 86 | ||
86 | return imx_add_platform_device("spi_imx", data->id, | 87 | return imx_add_platform_device(data->devid, data->id, |
87 | res, ARRAY_SIZE(res), pdata, sizeof(*pdata)); | 88 | res, ARRAY_SIZE(res), pdata, sizeof(*pdata)); |
88 | } | 89 | } |
diff --git a/arch/arm/plat-mxc/include/mach/devices-common.h b/arch/arm/plat-mxc/include/mach/devices-common.h index 490fe7c3ed5f..32b8f3674cc9 100644 --- a/arch/arm/plat-mxc/include/mach/devices-common.h +++ b/arch/arm/plat-mxc/include/mach/devices-common.h | |||
@@ -77,6 +77,7 @@ struct platform_device *__init imx_add_mxc_nand_v21(resource_size_t iobase, | |||
77 | 77 | ||
78 | #include <mach/spi.h> | 78 | #include <mach/spi.h> |
79 | struct imx_spi_imx_data { | 79 | struct imx_spi_imx_data { |
80 | const char *devid; | ||
80 | int id; | 81 | int id; |
81 | resource_size_t iobase; | 82 | resource_size_t iobase; |
82 | resource_size_t iosize; | 83 | resource_size_t iosize; |