summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/shared/console
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-11-30 04:37:44 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-11-30 04:37:44 +0000
commitac7af4a359cc51bc06e1bf0ed3314744972b8395 (patch)
tree7c73805f8b66af9b3082fbde80f6eb70edd966ac /c/src/lib/libbsp/powerpc/shared/console
parent2009-11-30 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-ac7af4a359cc51bc06e1bf0ed3314744972b8395.tar.bz2
Whitespace removal.
Diffstat (limited to 'c/src/lib/libbsp/powerpc/shared/console')
-rw-r--r--c/src/lib/libbsp/powerpc/shared/console/bspreset.c2
-rw-r--r--c/src/lib/libbsp/powerpc/shared/console/console.c6
-rw-r--r--c/src/lib/libbsp/powerpc/shared/console/uart.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/c/src/lib/libbsp/powerpc/shared/console/bspreset.c b/c/src/lib/libbsp/powerpc/shared/console/bspreset.c
index a6d0f52a2a..706121d6b6 100644
--- a/c/src/lib/libbsp/powerpc/shared/console/bspreset.c
+++ b/c/src/lib/libbsp/powerpc/shared/console/bspreset.c
@@ -16,7 +16,7 @@ void bsp_reset(void)
printk("Printing a stack trace for your convenience :-)\n");
CPU_print_stack();
/* shutdown and reboot */
-
+
#if defined(mvme2100)
*(unsigned char*)0xffe00000 |= 0x80;
#else
diff --git a/c/src/lib/libbsp/powerpc/shared/console/console.c b/c/src/lib/libbsp/powerpc/shared/console/console.c
index 58d590a002..9345461f5a 100644
--- a/c/src/lib/libbsp/powerpc/shared/console/console.c
+++ b/c/src/lib/libbsp/powerpc/shared/console/console.c
@@ -74,7 +74,7 @@ static int conSetAttr(int minor, const struct termios *);
typedef struct TtySTblRec_ {
char *name;
rtems_irq_hdl isr;
-} TtySTblRec, *TtySTbl;
+} TtySTblRec, *TtySTbl;
static TtySTblRec ttyS[]={
{ "/dev/ttyS0",
@@ -197,7 +197,7 @@ rtems_device_driver console_open(
rtems_status_code status;
static rtems_termios_callbacks cb =
#if defined(USE_POLLED_IO)
- {
+ {
NULL, /* firstOpen */
NULL, /* lastClose */
NULL, /* pollRead */
@@ -208,7 +208,7 @@ rtems_device_driver console_open(
TERMIOS_POLLED /* outputUsesInterrupts */
};
#else
- {
+ {
console_first_open, /* firstOpen */
console_last_close, /* lastClose */
#if ( TERMIOS_OUTPUT_MODE == TERMIOS_TASK_DRIVEN )
diff --git a/c/src/lib/libbsp/powerpc/shared/console/uart.c b/c/src/lib/libbsp/powerpc/shared/console/uart.c
index dd63c6781b..3e89701666 100644
--- a/c/src/lib/libbsp/powerpc/shared/console/uart.c
+++ b/c/src/lib/libbsp/powerpc/shared/console/uart.c
@@ -142,7 +142,7 @@ BSP_uart_init(int uart, int baud, int hwFlow)
/* Sanity check */
SANITY_CHECK(uart);
-
+
/* Make sure any printk activity drains before
* re-initializing.
*/
@@ -756,7 +756,7 @@ BSP_uart_termios_isr_com(int uart)
/*
* XXX - Note that this can now be one isr with the uart
- * passed as the parameter.
+ * passed as the parameter.
*/
void
BSP_uart_termios_isr_com1(void *unused)