diff options
Diffstat (limited to 'arch/arm/plat-mxc/devices')
-rw-r--r-- | arch/arm/plat-mxc/devices/Kconfig | 4 | ||||
-rw-r--r-- | arch/arm/plat-mxc/devices/platform-fec.c | 2 | ||||
-rw-r--r-- | arch/arm/plat-mxc/devices/platform-imx-dma.c | 6 | ||||
-rw-r--r-- | arch/arm/plat-mxc/devices/platform-imx-i2c.c | 4 | ||||
-rw-r--r-- | arch/arm/plat-mxc/devices/platform-imx-ssi.c | 4 | ||||
-rw-r--r-- | arch/arm/plat-mxc/devices/platform-imx-uart.c | 4 | ||||
-rw-r--r-- | arch/arm/plat-mxc/devices/platform-mxc_nand.c | 2 | ||||
-rw-r--r-- | arch/arm/plat-mxc/devices/platform-sdhci-esdhc-imx.c | 4 | ||||
-rw-r--r-- | arch/arm/plat-mxc/devices/platform-spi_imx.c | 4 |
9 files changed, 17 insertions, 17 deletions
diff --git a/arch/arm/plat-mxc/devices/Kconfig b/arch/arm/plat-mxc/devices/Kconfig index b391f4dcfcc2..2537166468ac 100644 --- a/arch/arm/plat-mxc/devices/Kconfig +++ b/arch/arm/plat-mxc/devices/Kconfig | |||
@@ -1,6 +1,6 @@ | |||
1 | config IMX_HAVE_PLATFORM_FEC | 1 | config IMX_HAVE_PLATFORM_FEC |
2 | bool | 2 | bool |
3 | default y if ARCH_MX25 || SOC_IMX27 || SOC_IMX35 || ARCH_MX51 | 3 | default y if ARCH_MX25 || SOC_IMX27 || SOC_IMX35 || SOC_IMX51 |
4 | 4 | ||
5 | config IMX_HAVE_PLATFORM_FLEXCAN | 5 | config IMX_HAVE_PLATFORM_FLEXCAN |
6 | select HAVE_CAN_FLEXCAN if CAN | 6 | select HAVE_CAN_FLEXCAN if CAN |
@@ -11,7 +11,7 @@ config IMX_HAVE_PLATFORM_FSL_USB2_UDC | |||
11 | 11 | ||
12 | config IMX_HAVE_PLATFORM_GPIO_KEYS | 12 | config IMX_HAVE_PLATFORM_GPIO_KEYS |
13 | bool | 13 | bool |
14 | default y if ARCH_MX51 | 14 | default y if SOC_IMX51 |
15 | 15 | ||
16 | config IMX_HAVE_PLATFORM_IMX21_HCD | 16 | config IMX_HAVE_PLATFORM_IMX21_HCD |
17 | bool | 17 | bool |
diff --git a/arch/arm/plat-mxc/devices/platform-fec.c b/arch/arm/plat-mxc/devices/platform-fec.c index 8d78aedf8a93..269ec78aba77 100644 --- a/arch/arm/plat-mxc/devices/platform-fec.c +++ b/arch/arm/plat-mxc/devices/platform-fec.c | |||
@@ -31,7 +31,7 @@ const struct imx_fec_data imx35_fec_data __initconst = | |||
31 | imx_fec_data_entry_single(MX35); | 31 | imx_fec_data_entry_single(MX35); |
32 | #endif | 32 | #endif |
33 | 33 | ||
34 | #ifdef CONFIG_ARCH_MX51 | 34 | #ifdef CONFIG_SOC_IMX51 |
35 | const struct imx_fec_data imx51_fec_data __initconst = | 35 | const struct imx_fec_data imx51_fec_data __initconst = |
36 | imx_fec_data_entry_single(MX51); | 36 | imx_fec_data_entry_single(MX51); |
37 | #endif | 37 | #endif |
diff --git a/arch/arm/plat-mxc/devices/platform-imx-dma.c b/arch/arm/plat-mxc/devices/platform-imx-dma.c index 93e2fdc3d65b..96b7c2bc76c3 100644 --- a/arch/arm/plat-mxc/devices/platform-imx-dma.c +++ b/arch/arm/plat-mxc/devices/platform-imx-dma.c | |||
@@ -54,10 +54,10 @@ struct imx_imx_sdma_data imx35_imx_sdma_data __initdata = | |||
54 | imx_imx_sdma_data_entry_single(MX35, 2, "imx35", 0); | 54 | imx_imx_sdma_data_entry_single(MX35, 2, "imx35", 0); |
55 | #endif /* ifdef CONFIG_SOC_IMX35 */ | 55 | #endif /* ifdef CONFIG_SOC_IMX35 */ |
56 | 56 | ||
57 | #ifdef CONFIG_ARCH_MX51 | 57 | #ifdef CONFIG_SOC_IMX51 |
58 | struct imx_imx_sdma_data imx51_imx_sdma_data __initconst = | 58 | struct imx_imx_sdma_data imx51_imx_sdma_data __initconst = |
59 | imx_imx_sdma_data_entry_single(MX51, 2, "imx51", 0); | 59 | imx_imx_sdma_data_entry_single(MX51, 2, "imx51", 0); |
60 | #endif /* ifdef CONFIG_ARCH_MX51 */ | 60 | #endif /* ifdef CONFIG_SOC_IMX51 */ |
61 | 61 | ||
62 | static struct platform_device __init __maybe_unused *imx_add_imx_sdma( | 62 | static struct platform_device __init __maybe_unused *imx_add_imx_sdma( |
63 | const struct imx_imx_sdma_data *data) | 63 | const struct imx_imx_sdma_data *data) |
@@ -146,7 +146,7 @@ static struct sdma_script_start_addrs addr_imx35_to2 = { | |||
146 | }; | 146 | }; |
147 | #endif | 147 | #endif |
148 | 148 | ||
149 | #ifdef CONFIG_ARCH_MX51 | 149 | #ifdef CONFIG_SOC_IMX51 |
150 | static struct sdma_script_start_addrs addr_imx51_to1 = { | 150 | static struct sdma_script_start_addrs addr_imx51_to1 = { |
151 | .ap_2_ap_addr = 642, | 151 | .ap_2_ap_addr = 642, |
152 | .uart_2_mcu_addr = 817, | 152 | .uart_2_mcu_addr = 817, |
diff --git a/arch/arm/plat-mxc/devices/platform-imx-i2c.c b/arch/arm/plat-mxc/devices/platform-imx-i2c.c index 075bd8e337f8..72ba880c75af 100644 --- a/arch/arm/plat-mxc/devices/platform-imx-i2c.c +++ b/arch/arm/plat-mxc/devices/platform-imx-i2c.c | |||
@@ -69,14 +69,14 @@ const struct imx_imx_i2c_data imx35_imx_i2c_data[] __initconst = { | |||
69 | }; | 69 | }; |
70 | #endif /* ifdef CONFIG_SOC_IMX35 */ | 70 | #endif /* ifdef CONFIG_SOC_IMX35 */ |
71 | 71 | ||
72 | #ifdef CONFIG_ARCH_MX51 | 72 | #ifdef CONFIG_SOC_IMX51 |
73 | const struct imx_imx_i2c_data imx51_imx_i2c_data[] __initconst = { | 73 | const struct imx_imx_i2c_data imx51_imx_i2c_data[] __initconst = { |
74 | #define imx51_imx_i2c_data_entry(_id, _hwid) \ | 74 | #define imx51_imx_i2c_data_entry(_id, _hwid) \ |
75 | imx_imx_i2c_data_entry(MX51, _id, _hwid, SZ_4K) | 75 | imx_imx_i2c_data_entry(MX51, _id, _hwid, SZ_4K) |
76 | imx51_imx_i2c_data_entry(0, 1), | 76 | imx51_imx_i2c_data_entry(0, 1), |
77 | imx51_imx_i2c_data_entry(1, 2), | 77 | imx51_imx_i2c_data_entry(1, 2), |
78 | }; | 78 | }; |
79 | #endif /* ifdef CONFIG_ARCH_MX51 */ | 79 | #endif /* ifdef CONFIG_SOC_IMX51 */ |
80 | 80 | ||
81 | struct platform_device *__init imx_add_imx_i2c( | 81 | struct platform_device *__init imx_add_imx_i2c( |
82 | const struct imx_imx_i2c_data *data, | 82 | const struct imx_imx_i2c_data *data, |
diff --git a/arch/arm/plat-mxc/devices/platform-imx-ssi.c b/arch/arm/plat-mxc/devices/platform-imx-ssi.c index 02002fc9ea24..ac3d57239bed 100644 --- a/arch/arm/plat-mxc/devices/platform-imx-ssi.c +++ b/arch/arm/plat-mxc/devices/platform-imx-ssi.c | |||
@@ -66,14 +66,14 @@ const struct imx_imx_ssi_data imx35_imx_ssi_data[] __initconst = { | |||
66 | }; | 66 | }; |
67 | #endif /* ifdef CONFIG_SOC_IMX35 */ | 67 | #endif /* ifdef CONFIG_SOC_IMX35 */ |
68 | 68 | ||
69 | #ifdef CONFIG_ARCH_MX51 | 69 | #ifdef CONFIG_SOC_IMX51 |
70 | const struct imx_imx_ssi_data imx51_imx_ssi_data[] __initconst = { | 70 | const struct imx_imx_ssi_data imx51_imx_ssi_data[] __initconst = { |
71 | #define imx51_imx_ssi_data_entry(_id, _hwid) \ | 71 | #define imx51_imx_ssi_data_entry(_id, _hwid) \ |
72 | imx_imx_ssi_data_entry(MX51, _id, _hwid, SZ_4K) | 72 | imx_imx_ssi_data_entry(MX51, _id, _hwid, SZ_4K) |
73 | imx51_imx_ssi_data_entry(0, 1), | 73 | imx51_imx_ssi_data_entry(0, 1), |
74 | imx51_imx_ssi_data_entry(1, 2), | 74 | imx51_imx_ssi_data_entry(1, 2), |
75 | }; | 75 | }; |
76 | #endif /* ifdef CONFIG_ARCH_MX51 */ | 76 | #endif /* ifdef CONFIG_SOC_IMX51 */ |
77 | 77 | ||
78 | struct platform_device *__init imx_add_imx_ssi( | 78 | struct platform_device *__init imx_add_imx_ssi( |
79 | const struct imx_imx_ssi_data *data, | 79 | const struct imx_imx_ssi_data *data, |
diff --git a/arch/arm/plat-mxc/devices/platform-imx-uart.c b/arch/arm/plat-mxc/devices/platform-imx-uart.c index 08bbd65ee019..7b45b785e5fd 100644 --- a/arch/arm/plat-mxc/devices/platform-imx-uart.c +++ b/arch/arm/plat-mxc/devices/platform-imx-uart.c | |||
@@ -94,7 +94,7 @@ const struct imx_imx_uart_1irq_data imx35_imx_uart_data[] __initconst = { | |||
94 | }; | 94 | }; |
95 | #endif /* ifdef CONFIG_SOC_IMX35 */ | 95 | #endif /* ifdef CONFIG_SOC_IMX35 */ |
96 | 96 | ||
97 | #ifdef CONFIG_ARCH_MX51 | 97 | #ifdef CONFIG_SOC_IMX51 |
98 | const struct imx_imx_uart_1irq_data imx51_imx_uart_data[] __initconst = { | 98 | const struct imx_imx_uart_1irq_data imx51_imx_uart_data[] __initconst = { |
99 | #define imx51_imx_uart_data_entry(_id, _hwid) \ | 99 | #define imx51_imx_uart_data_entry(_id, _hwid) \ |
100 | imx_imx_uart_1irq_data_entry(MX51, _id, _hwid, SZ_4K) | 100 | imx_imx_uart_1irq_data_entry(MX51, _id, _hwid, SZ_4K) |
@@ -102,7 +102,7 @@ const struct imx_imx_uart_1irq_data imx51_imx_uart_data[] __initconst = { | |||
102 | imx51_imx_uart_data_entry(1, 2), | 102 | imx51_imx_uart_data_entry(1, 2), |
103 | imx51_imx_uart_data_entry(2, 3), | 103 | imx51_imx_uart_data_entry(2, 3), |
104 | }; | 104 | }; |
105 | #endif /* ifdef CONFIG_ARCH_MX51 */ | 105 | #endif /* ifdef CONFIG_SOC_IMX51 */ |
106 | 106 | ||
107 | struct platform_device *__init imx_add_imx_uart_3irq( | 107 | struct platform_device *__init imx_add_imx_uart_3irq( |
108 | const struct imx_imx_uart_3irq_data *data, | 108 | const struct imx_imx_uart_3irq_data *data, |
diff --git a/arch/arm/plat-mxc/devices/platform-mxc_nand.c b/arch/arm/plat-mxc/devices/platform-mxc_nand.c index f5beac0cdde7..1568f39fba8b 100644 --- a/arch/arm/plat-mxc/devices/platform-mxc_nand.c +++ b/arch/arm/plat-mxc/devices/platform-mxc_nand.c | |||
@@ -51,7 +51,7 @@ const struct imx_mxc_nand_data imx35_mxc_nand_data __initconst = | |||
51 | imx_mxc_nand_data_entry_single(MX35, SZ_8K); | 51 | imx_mxc_nand_data_entry_single(MX35, SZ_8K); |
52 | #endif | 52 | #endif |
53 | 53 | ||
54 | #ifdef CONFIG_ARCH_MX51 | 54 | #ifdef CONFIG_SOC_IMX51 |
55 | const struct imx_mxc_nand_data imx51_mxc_nand_data __initconst = | 55 | const struct imx_mxc_nand_data imx51_mxc_nand_data __initconst = |
56 | imx_mxc_nandv3_data_entry_single(MX51, SZ_16K); | 56 | imx_mxc_nandv3_data_entry_single(MX51, SZ_16K); |
57 | #endif | 57 | #endif |
diff --git a/arch/arm/plat-mxc/devices/platform-sdhci-esdhc-imx.c b/arch/arm/plat-mxc/devices/platform-sdhci-esdhc-imx.c index 167cce89e7c7..b3525648a01d 100644 --- a/arch/arm/plat-mxc/devices/platform-sdhci-esdhc-imx.c +++ b/arch/arm/plat-mxc/devices/platform-sdhci-esdhc-imx.c | |||
@@ -41,7 +41,7 @@ imx35_sdhci_esdhc_imx_data[] __initconst = { | |||
41 | }; | 41 | }; |
42 | #endif /* ifdef CONFIG_SOC_IMX35 */ | 42 | #endif /* ifdef CONFIG_SOC_IMX35 */ |
43 | 43 | ||
44 | #ifdef CONFIG_ARCH_MX51 | 44 | #ifdef CONFIG_SOC_IMX51 |
45 | const struct imx_sdhci_esdhc_imx_data | 45 | const struct imx_sdhci_esdhc_imx_data |
46 | imx51_sdhci_esdhc_imx_data[] __initconst = { | 46 | imx51_sdhci_esdhc_imx_data[] __initconst = { |
47 | #define imx51_sdhci_esdhc_imx_data_entry(_id, _hwid) \ | 47 | #define imx51_sdhci_esdhc_imx_data_entry(_id, _hwid) \ |
@@ -51,7 +51,7 @@ imx51_sdhci_esdhc_imx_data[] __initconst = { | |||
51 | imx51_sdhci_esdhc_imx_data_entry(2, 3), | 51 | imx51_sdhci_esdhc_imx_data_entry(2, 3), |
52 | imx51_sdhci_esdhc_imx_data_entry(3, 4), | 52 | imx51_sdhci_esdhc_imx_data_entry(3, 4), |
53 | }; | 53 | }; |
54 | #endif /* ifdef CONFIG_ARCH_MX51 */ | 54 | #endif /* ifdef CONFIG_SOC_IMX51 */ |
55 | 55 | ||
56 | struct platform_device *__init imx_add_sdhci_esdhc_imx( | 56 | struct platform_device *__init imx_add_sdhci_esdhc_imx( |
57 | const struct imx_sdhci_esdhc_imx_data *data, | 57 | const struct imx_sdhci_esdhc_imx_data *data, |
diff --git a/arch/arm/plat-mxc/devices/platform-spi_imx.c b/arch/arm/plat-mxc/devices/platform-spi_imx.c index 8f2b60a6396e..e1ffa1f665e2 100644 --- a/arch/arm/plat-mxc/devices/platform-spi_imx.c +++ b/arch/arm/plat-mxc/devices/platform-spi_imx.c | |||
@@ -68,7 +68,7 @@ const struct imx_spi_imx_data imx35_cspi_data[] __initconst = { | |||
68 | }; | 68 | }; |
69 | #endif /* ifdef CONFIG_SOC_IMX35 */ | 69 | #endif /* ifdef CONFIG_SOC_IMX35 */ |
70 | 70 | ||
71 | #ifdef CONFIG_ARCH_MX51 | 71 | #ifdef CONFIG_SOC_IMX51 |
72 | const struct imx_spi_imx_data imx51_cspi_data __initconst = | 72 | const struct imx_spi_imx_data imx51_cspi_data __initconst = |
73 | imx_spi_imx_data_entry_single(MX51, CSPI, "imx51-cspi", 0, , SZ_4K); | 73 | imx_spi_imx_data_entry_single(MX51, CSPI, "imx51-cspi", 0, , SZ_4K); |
74 | 74 | ||
@@ -78,7 +78,7 @@ const struct imx_spi_imx_data imx51_ecspi_data[] __initconst = { | |||
78 | imx51_ecspi_data_entry(0, 1), | 78 | imx51_ecspi_data_entry(0, 1), |
79 | imx51_ecspi_data_entry(1, 2), | 79 | imx51_ecspi_data_entry(1, 2), |
80 | }; | 80 | }; |
81 | #endif /* ifdef CONFIG_ARCH_MX51 */ | 81 | #endif /* ifdef CONFIG_SOC_IMX51 */ |
82 | 82 | ||
83 | struct platform_device *__init imx_add_spi_imx( | 83 | struct platform_device *__init imx_add_spi_imx( |
84 | const struct imx_spi_imx_data *data, | 84 | const struct imx_spi_imx_data *data, |