diff options
author | Sonic Zhang <sonic.zhang@analog.com> | 2007-11-21 04:04:41 -0500 |
---|---|---|
committer | Bryan Wu <bryan.wu@analog.com> | 2007-11-21 04:04:41 -0500 |
commit | 233b28a91caf7cff326e604c437a364eaf794106 (patch) | |
tree | 637fa71c2a1ee9ccd3afda8ce01c3d4d2f338565 /arch/blackfin | |
parent | 49dce9124b41984bf1e918847bc17929c2e8f80f (diff) |
Blackfin arch: fix bug when enable uart1 with uart0 disabled => no initial console
Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
Signed-off-by: Sonic Zhang <sonic.zhang@analog.com>
Signed-off-by: Bryan Wu <bryan.wu@analog.com>
Diffstat (limited to 'arch/blackfin')
-rw-r--r-- | arch/blackfin/mach-bf537/boards/stamp.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/blackfin/mach-bf537/boards/stamp.c b/arch/blackfin/mach-bf537/boards/stamp.c index a2c347c85e20..07b0dc273d2f 100644 --- a/arch/blackfin/mach-bf537/boards/stamp.c +++ b/arch/blackfin/mach-bf537/boards/stamp.c | |||
@@ -578,15 +578,20 @@ static struct platform_device bfin_fb_adv7393_device = { | |||
578 | 578 | ||
579 | #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE) | 579 | #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE) |
580 | static struct resource bfin_uart_resources[] = { | 580 | static struct resource bfin_uart_resources[] = { |
581 | #ifdef CONFIG_SERIAL_BFIN_UART0 | ||
581 | { | 582 | { |
582 | .start = 0xFFC00400, | 583 | .start = 0xFFC00400, |
583 | .end = 0xFFC004FF, | 584 | .end = 0xFFC004FF, |
584 | .flags = IORESOURCE_MEM, | 585 | .flags = IORESOURCE_MEM, |
585 | }, { | 586 | }, |
587 | #endif | ||
588 | #ifdef CONFIG_SERIAL_BFIN_UART1 | ||
589 | { | ||
586 | .start = 0xFFC02000, | 590 | .start = 0xFFC02000, |
587 | .end = 0xFFC020FF, | 591 | .end = 0xFFC020FF, |
588 | .flags = IORESOURCE_MEM, | 592 | .flags = IORESOURCE_MEM, |
589 | }, | 593 | }, |
594 | #endif | ||
590 | }; | 595 | }; |
591 | 596 | ||
592 | static struct platform_device bfin_uart_device = { | 597 | static struct platform_device bfin_uart_device = { |