Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 172781
b: refs/heads/master
c: d9f5007
h: refs/heads/master
i:
  172779: f3cb05a
v: v3
  • Loading branch information
vikram pandita authored and Tony Lindgren committed Nov 22, 2009
1 parent 065768f commit 7a36d39
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9d30b99f352a7f21f93f0f3e2f0eecf8aa7847c1
refs/heads/master: d9f5007491e3b6693dd00487981676b6b3005d72
5 changes: 4 additions & 1 deletion trunk/arch/arm/plat-omap/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ config OMAP_DM_TIMER
choice
prompt "Low-level debug console UART"
depends on ARCH_OMAP
default OMAP_LL_DEBUG_UART1
default OMAP_LL_DEBUG_NONE

config OMAP_LL_DEBUG_UART1
bool "UART1"
Expand All @@ -176,6 +176,9 @@ config OMAP_LL_DEBUG_UART2
config OMAP_LL_DEBUG_UART3
bool "UART3"

config OMAP_LL_DEBUG_NONE
bool "None"

endchoice

config OMAP_SERIAL_WAKE
Expand Down
6 changes: 5 additions & 1 deletion trunk/arch/arm/plat-omap/include/plat/uncompress.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,12 @@ static void putc(int c)
uart = (volatile u8 *)(OMAP_UART3_BASE);
#elif defined(CONFIG_OMAP_LL_DEBUG_UART2)
uart = (volatile u8 *)(OMAP_UART2_BASE);
#else
#elif defined(CONFIG_OMAP_LL_DEBUG_UART1)
uart = (volatile u8 *)(OMAP_UART1_BASE);
#elif defined(CONFIG_OMAP_LL_DEBUG_NONE)
return;
#else
return;
#endif

#ifdef CONFIG_ARCH_OMAP1
Expand Down

0 comments on commit 7a36d39

Please sign in to comment.