diff options
author | Andrew Victor <andrew@sanpeople.com> | 2006-09-27 04:44:11 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-09-28 06:52:05 -0400 |
commit | 72729910c38ca5b4736032c15dc3f9d48fe4f68a (patch) | |
tree | e7461ec8e0ff07d1634d7d7a467cb8454135a5c8 /drivers/serial | |
parent | 26f908186f923291999833e9d563259834bdca06 (diff) |
[ARM] 3865/1: AT91RM9200 header updates
This is more preparation for adding support for the new Atmel AT91SAM9
processors.
Changes include:
- Replace AT91_BASE_* with AT91RM9200_BASE_*
- Replace AT91_ID_* with AT91RM9200_ID_*
- ROM, SRAM and UHP address definitions moved to at91rm9200.h.
- The raw AT91_P[ABCD]_* definitions are now depreciated in favour of
the GPIO API.
Signed-off-by: Andrew Victor <andrew@sanpeople.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'drivers/serial')
-rw-r--r-- | drivers/serial/at91_serial.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/serial/at91_serial.c b/drivers/serial/at91_serial.c index 54c6b2adf7b7..bf4bf103e5a0 100644 --- a/drivers/serial/at91_serial.c +++ b/drivers/serial/at91_serial.c | |||
@@ -139,7 +139,7 @@ static void at91_set_mctrl(struct uart_port *port, u_int mctrl) | |||
139 | * AT91RM9200 Errata #39: RTS0 is not internally connected to PA21. | 139 | * AT91RM9200 Errata #39: RTS0 is not internally connected to PA21. |
140 | * We need to drive the pin manually. | 140 | * We need to drive the pin manually. |
141 | */ | 141 | */ |
142 | if (port->mapbase == AT91_BASE_US0) { | 142 | if (port->mapbase == AT91RM9200_BASE_US0) { |
143 | if (mctrl & TIOCM_RTS) | 143 | if (mctrl & TIOCM_RTS) |
144 | at91_set_gpio_value(AT91_PIN_PA21, 0); | 144 | at91_set_gpio_value(AT91_PIN_PA21, 0); |
145 | else | 145 | else |