Skip to content

Commit

Permalink
[ARM] 4937/1: [CSB637] Convert to new-style UART initialization
Browse files Browse the repository at this point in the history
Converts the CSB637 to the new-style UART initialization API.

Signed-off-by: Bill Gatliff <bgat@billgatliff.com>
Acked-by: Andrew Victor <linux@maxim.org.za>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Bill Gatliff authored and Russell King committed Apr 10, 2008
1 parent c8fc191 commit 952c855
Showing 1 changed file with 5 additions and 13 deletions.
18 changes: 5 additions & 13 deletions arch/arm/mach-at91/board-csb637.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,6 @@
#include "generic.h"


/*
* Serial port configuration.
* 0 .. 3 = USART0 .. USART3
* 4 = DBGU
*/
static struct at91_uart_config __initdata csb637_uart_config = {
.console_tty = 0, /* ttyS0 */
.nr_tty = 2,
.tty_map = { 4, 1, -1, -1, -1 } /* ttyS0, ..., ttyS4 */
};

static void __init csb637_map_io(void)
{
/* Initialize processor: 3.6864 MHz crystal */
Expand All @@ -59,8 +48,11 @@ static void __init csb637_map_io(void)
/* Setup the LEDs */
at91_init_leds(AT91_PIN_PB2, AT91_PIN_PB2);

/* Setup the serial ports and console */
at91_init_serial(&csb637_uart_config);
/* DBGU on ttyS0 */
at91_register_uart(0, 0, 0);

/* make console=ttyS0 the default */
at91_set_serial_console(0);
}

static void __init csb637_init_irq(void)
Expand Down

0 comments on commit 952c855

Please sign in to comment.