diff options
author | Cyril Chemparathy <cyril@ti.com> | 2010-05-02 14:28:12 -0400 |
---|---|---|
committer | Kevin Hilman <khilman@deeprootsystems.com> | 2010-05-06 18:02:10 -0400 |
commit | da0122ca8b7804b9cd8fa7eff466bafba27f09a3 (patch) | |
tree | 50e9b45cf4c633dfa851ccd4b224896388ea8eb4 /arch/arm/mach-davinci/serial.c | |
parent | c78a5bc2e77e8fc5be29cda5b28c9b9afd0f4b6d (diff) |
Davinci: serial - remove unnecessary define
The uart pdata array is already terminated by a zero flag field.
This patch reuses this terminator and eliminates DAVINCI_MAX_NR_UARTS
definition. This way, future platforms can have different number of uarts
initialized via davinci_serial_init().
Signed-off-by: Cyril Chemparathy <cyril@ti.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm/mach-davinci/serial.c')
-rw-r--r-- | arch/arm/mach-davinci/serial.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-davinci/serial.c b/arch/arm/mach-davinci/serial.c index 7ce5ba086575..709e1a90ec2a 100644 --- a/arch/arm/mach-davinci/serial.c +++ b/arch/arm/mach-davinci/serial.c | |||
@@ -77,7 +77,7 @@ int __init davinci_serial_init(struct davinci_uart_config *info) | |||
77 | * Make sure the serial ports are muxed on at this point. | 77 | * Make sure the serial ports are muxed on at this point. |
78 | * You have to mux them off in device drivers later on if not needed. | 78 | * You have to mux them off in device drivers later on if not needed. |
79 | */ | 79 | */ |
80 | for (i = 0; i < DAVINCI_MAX_NR_UARTS; i++, p++) { | 80 | for (i = 0; p->flags; i++, p++) { |
81 | if (!(info->enabled_uarts & (1 << i))) | 81 | if (!(info->enabled_uarts & (1 << i))) |
82 | continue; | 82 | continue; |
83 | 83 | ||