diff options
author | Lennert Buytenhek <buytenh@wantstofly.org> | 2006-03-23 07:59:08 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-03-23 07:59:08 -0500 |
commit | 7d420896256a4bffe44202f282fbdd4c74d779a8 (patch) | |
tree | 7724a659cbcfb78f6820f9cb919035106ca3234f /arch/arm/mach-iop3xx | |
parent | 2e6e33bab6e1996a5dec9108fb467b52b841e7a8 (diff) |
[ARM] 3391/1: use PLAT8250_DEV_PLATFORM{,1} for platform device id instead of 0/1
Patch from Lennert Buytenhek
This patch changes iop3xx and omap2 and to use PLAT8250_DEV_PLATFORM{,1}
as platform device id instead of just hardcoding 0/1 directly.
Signed-off-by: Lennert Buytenhek <buytenh@wantstofly.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-iop3xx')
-rw-r--r-- | arch/arm/mach-iop3xx/iop331-setup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-iop3xx/iop331-setup.c b/arch/arm/mach-iop3xx/iop331-setup.c index 2d6abe5be14d..7b7b6eea3846 100644 --- a/arch/arm/mach-iop3xx/iop331-setup.c +++ b/arch/arm/mach-iop3xx/iop331-setup.c | |||
@@ -103,7 +103,7 @@ static struct plat_serial8250_port iop33x_uart1_data[] = { | |||
103 | 103 | ||
104 | static struct platform_device iop33x_uart0 = { | 104 | static struct platform_device iop33x_uart0 = { |
105 | .name = "serial8250", | 105 | .name = "serial8250", |
106 | .id = 0, | 106 | .id = PLAT8250_DEV_PLATFORM, |
107 | .dev.platform_data = iop33x_uart0_data, | 107 | .dev.platform_data = iop33x_uart0_data, |
108 | .num_resources = 2, | 108 | .num_resources = 2, |
109 | .resource = iop33x_uart0_resources, | 109 | .resource = iop33x_uart0_resources, |
@@ -111,7 +111,7 @@ static struct platform_device iop33x_uart0 = { | |||
111 | 111 | ||
112 | static struct platform_device iop33x_uart1 = { | 112 | static struct platform_device iop33x_uart1 = { |
113 | .name = "serial8250", | 113 | .name = "serial8250", |
114 | .id = 1, | 114 | .id = PLAT8250_DEV_PLATFORM1, |
115 | .dev.platform_data = iop33x_uart1_data, | 115 | .dev.platform_data = iop33x_uart1_data, |
116 | .num_resources = 2, | 116 | .num_resources = 2, |
117 | .resource = iop33x_uart1_resources, | 117 | .resource = iop33x_uart1_resources, |