diff options
author | Sascha Hauer <s.hauer@pengutronix.de> | 2008-07-05 04:02:45 -0400 |
---|---|---|
committer | Robert Schwebel <r.schwebel@pengutronix.de> | 2008-07-05 04:02:45 -0400 |
commit | dbff4e9ea2e83fda89143389bfb229cb29425a32 (patch) | |
tree | eb3015b70fa09bd20a294afbc08d486185c691d8 /arch | |
parent | 2582d8c1655f2eda42d5358a242b256fd6e88571 (diff) |
IMX UART: remove statically initialized tables
This patch removes the statically initialized tables from the i.MX serial
driver and makes the driver fully dependent on the information provided by
the platform_device.
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-imx/mx1ads.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/mx1ads.c b/arch/arm/mach-imx/mx1ads.c index a9778c1587ab..9635d5812bcd 100644 --- a/arch/arm/mach-imx/mx1ads.c +++ b/arch/arm/mach-imx/mx1ads.c | |||
@@ -69,6 +69,11 @@ static struct resource imx_uart1_resources[] = { | |||
69 | .end = (UART1_MINT_TX), | 69 | .end = (UART1_MINT_TX), |
70 | .flags = IORESOURCE_IRQ, | 70 | .flags = IORESOURCE_IRQ, |
71 | }, | 71 | }, |
72 | [3] = { | ||
73 | .start = UART1_MINT_RTS, | ||
74 | .end = UART1_MINT_RTS, | ||
75 | .flags = IORESOURCE_IRQ, | ||
76 | }, | ||
72 | }; | 77 | }; |
73 | 78 | ||
74 | static struct platform_device imx_uart1_device = { | 79 | static struct platform_device imx_uart1_device = { |
@@ -97,6 +102,11 @@ static struct resource imx_uart2_resources[] = { | |||
97 | .end = (UART2_MINT_TX), | 102 | .end = (UART2_MINT_TX), |
98 | .flags = IORESOURCE_IRQ, | 103 | .flags = IORESOURCE_IRQ, |
99 | }, | 104 | }, |
105 | [3] = { | ||
106 | .start = UART2_MINT_RTS, | ||
107 | .end = UART2_MINT_RTS, | ||
108 | .flags = IORESOURCE_IRQ, | ||
109 | }, | ||
100 | }; | 110 | }; |
101 | 111 | ||
102 | static struct platform_device imx_uart2_device = { | 112 | static struct platform_device imx_uart2_device = { |