Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 216818
b: refs/heads/master
c: 1aa5f2a
h: refs/heads/master
v: v3
  • Loading branch information
Michael Williamson authored and Kevin Hilman committed Sep 24, 2010
1 parent 222f457 commit 01562ee
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0b3fc7bb88243371a2bd4a4990fb62a0b722efe7
refs/heads/master: 1aa5f2a9c1575279baf06e94a4bd3b3b86b7f176
3 changes: 3 additions & 0 deletions trunk/arch/arm/mach-davinci/board-da830-evm.c
Original file line number Diff line number Diff line change
Expand Up @@ -598,6 +598,9 @@ static __init void da830_evm_init(void)
#ifdef CONFIG_SERIAL_8250_CONSOLE
static int __init da830_evm_console_init(void)
{
if (!machine_is_davinci_da830_evm())
return 0;

return add_preferred_console("ttyS", 2, "115200");
}
console_initcall(da830_evm_console_init);
Expand Down
3 changes: 3 additions & 0 deletions trunk/arch/arm/mach-davinci/board-da850-evm.c
Original file line number Diff line number Diff line change
Expand Up @@ -859,6 +859,9 @@ static __init void da850_evm_init(void)
#ifdef CONFIG_SERIAL_8250_CONSOLE
static int __init da850_evm_console_init(void)
{
if (!machine_is_davinci_da850_evm())
return 0;

return add_preferred_console("ttyS", 2, "115200");
}
console_initcall(da850_evm_console_init);
Expand Down

0 comments on commit 01562ee

Please sign in to comment.