aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/serial
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/serial')
-rw-r--r--drivers/serial/atmel_serial.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/serial/atmel_serial.c b/drivers/serial/atmel_serial.c
index f14a07ed60b8..65972ce63c7d 100644
--- a/drivers/serial/atmel_serial.c
+++ b/drivers/serial/atmel_serial.c
@@ -113,7 +113,7 @@ struct at91_uart_port {
113 unsigned short suspended; /* is port suspended? */ 113 unsigned short suspended; /* is port suspended? */
114}; 114};
115 115
116static struct at91_uart_port at91_ports[AT91_NR_UART]; 116static struct at91_uart_port at91_ports[ATMEL_MAX_UART];
117 117
118#ifdef SUPPORT_SYSRQ 118#ifdef SUPPORT_SYSRQ
119static struct console at91_console; 119static struct console at91_console;
@@ -682,7 +682,7 @@ static struct uart_ops at91_pops = {
682static void __devinit at91_init_port(struct at91_uart_port *at91_port, struct platform_device *pdev) 682static void __devinit at91_init_port(struct at91_uart_port *at91_port, struct platform_device *pdev)
683{ 683{
684 struct uart_port *port = &at91_port->uart; 684 struct uart_port *port = &at91_port->uart;
685 struct at91_uart_data *data = pdev->dev.platform_data; 685 struct atmel_uart_data *data = pdev->dev.platform_data;
686 686
687 port->iotype = UPIO_MEM; 687 port->iotype = UPIO_MEM;
688 port->flags = UPF_BOOT_AUTOCONF; 688 port->flags = UPF_BOOT_AUTOCONF;
@@ -834,9 +834,9 @@ static struct console at91_console = {
834 */ 834 */
835static int __init at91_console_init(void) 835static int __init at91_console_init(void)
836{ 836{
837 if (at91_default_console_device) { 837 if (atmel_default_console_device) {
838 add_preferred_console(AT91_DEVICENAME, at91_default_console_device->id, NULL); 838 add_preferred_console(AT91_DEVICENAME, atmel_default_console_device->id, NULL);
839 at91_init_port(&(at91_ports[at91_default_console_device->id]), at91_default_console_device); 839 at91_init_port(&(at91_ports[atmel_default_console_device->id]), atmel_default_console_device);
840 register_console(&at91_console); 840 register_console(&at91_console);
841 } 841 }
842 842
@@ -849,7 +849,7 @@ console_initcall(at91_console_init);
849 */ 849 */
850static int __init at91_late_console_init(void) 850static int __init at91_late_console_init(void)
851{ 851{
852 if (at91_default_console_device && !(at91_console.flags & CON_ENABLED)) 852 if (atmel_default_console_device && !(at91_console.flags & CON_ENABLED))
853 register_console(&at91_console); 853 register_console(&at91_console);
854 854
855 return 0; 855 return 0;
@@ -866,7 +866,7 @@ static struct uart_driver at91_uart = {
866 .dev_name = AT91_DEVICENAME, 866 .dev_name = AT91_DEVICENAME,
867 .major = SERIAL_AT91_MAJOR, 867 .major = SERIAL_AT91_MAJOR,
868 .minor = MINOR_START, 868 .minor = MINOR_START,
869 .nr = AT91_NR_UART, 869 .nr = ATMEL_MAX_UART,
870 .cons = AT91_CONSOLE_DEVICE, 870 .cons = AT91_CONSOLE_DEVICE,
871}; 871};
872 872