summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/gumstix/console
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-11-07 21:46:16 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-11-07 21:46:16 +0000
commit3dcdad4ac2532b8f233ec3a159d149bfabd7ed35 (patch)
treeaf0c16e9c0395bc0e34016dac0283a452ed1e44a /c/src/lib/libbsp/arm/gumstix/console
parent2011-11-07 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-3dcdad4ac2532b8f233ec3a159d149bfabd7ed35.tar.bz2
2011-11-07 Joel Sherrill <joel.sherrill@oarcorp.com>
PR 1953/bsps * console/uarts.c: Do not use /dev/console in libchip configuration table. Shared driver framework selects device to use as /dev/console.
Diffstat (limited to 'c/src/lib/libbsp/arm/gumstix/console')
-rwxr-xr-xc/src/lib/libbsp/arm/gumstix/console/uarts.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/c/src/lib/libbsp/arm/gumstix/console/uarts.c b/c/src/lib/libbsp/arm/gumstix/console/uarts.c
index 8875ad419a..17765e0019 100755
--- a/c/src/lib/libbsp/arm/gumstix/console/uarts.c
+++ b/c/src/lib/libbsp/arm/gumstix/console/uarts.c
@@ -42,15 +42,15 @@ extern console_fns ffuart_fns;
*/
console_tbl Console_Configuration_Ports[] = {
{
- "/dev/console", /* sDeviceName */
+ "/dev/com0", /* sDeviceName */
SERIAL_CUSTOM, /* deviceType */
- &ffuart_fns, /* pDeviceFns */
+ &ffuart_fns, /* pDeviceFns */
NULL, /* deviceProbe */
NULL, /* pDeviceFlow */
0, /* ulMargin - NOT USED */
0, /* ulHysteresis - NOT USED */
NULL, /* pDeviceParams */
- FFUART_BASE, /* ulCtrlPort1 - Pointer to DBGU regs */
+ FFUART_BASE, /* ulCtrlPort1 - Pointer to DBGU regs */
0, /* ulCtrlPort2 - NOT USED */
0, /* ulDataPort - NOT USED */
NULL, /* getRegister - NOT USED */