summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/sh/shared
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-04-16 21:51:30 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-04-16 21:51:30 +0000
commit0fdc09947386f72e261d0fc474e35e7bfa560dc4 (patch)
tree3057e0e8a3de5f7ec37e5a58d1d562bb6fccabb5 /c/src/lib/libbsp/sh/shared
parentRemove stray white spaces. (diff)
downloadrtems-0fdc09947386f72e261d0fc474e35e7bfa560dc4.tar.bz2
Remove stray white spaces.
Diffstat (limited to 'c/src/lib/libbsp/sh/shared')
-rw-r--r--c/src/lib/libbsp/sh/shared/console.c16
-rw-r--r--c/src/lib/libbsp/sh/shared/setvec.c2
2 files changed, 9 insertions, 9 deletions
diff --git a/c/src/lib/libbsp/sh/shared/console.c b/c/src/lib/libbsp/sh/shared/console.c
index a6713de4e9..b5796a578f 100644
--- a/c/src/lib/libbsp/sh/shared/console.c
+++ b/c/src/lib/libbsp/sh/shared/console.c
@@ -1,12 +1,12 @@
/*
* /dev/console for Hitachi SH 703X
*
- * The SH doesn't have a designated console device. Therefore we "alias"
- * another device as /dev/console and revector all calls to /dev/console
+ * The SH doesn't have a designated console device. Therefore we "alias"
+ * another device as /dev/console and revector all calls to /dev/console
* to this device.
*
- * This approach is similar to installing a sym-link from one device to
- * another device. If rtems once will support sym-links for devices files,
+ * This approach is similar to installing a sym-link from one device to
+ * another device. If rtems once will support sym-links for devices files,
* this implementation could be dropped.
*
* Author: Ralf Corsepius (corsepiu@faw.uni-ulm.de)
@@ -16,7 +16,7 @@
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- *
+ *
*
* COPYRIGHT (c) 1998.
* On-Line Applications Research Corporation (OAR).
@@ -57,7 +57,7 @@ rtems_device_driver console_initialize(
)
{
rtems_device_driver status;
-
+
status = rtems_io_register_name(
"/dev/console",
major,
@@ -89,7 +89,7 @@ rtems_device_driver console_open(
low_level_device_info.minor,
arg );
}
-
+
/*
* Close entry point
*/
@@ -121,7 +121,7 @@ rtems_device_driver console_read(
}
/*
- * write bytes to the serial port. Stdout and stderr are the same.
+ * write bytes to the serial port. Stdout and stderr are the same.
*/
rtems_device_driver console_write(
diff --git a/c/src/lib/libbsp/sh/shared/setvec.c b/c/src/lib/libbsp/sh/shared/setvec.c
index 52a48dd5a5..c658ae7fba 100644
--- a/c/src/lib/libbsp/sh/shared/setvec.c
+++ b/c/src/lib/libbsp/sh/shared/setvec.c
@@ -1,7 +1,7 @@
/* set_vector
*
* NOTE: This function is considered OBSOLETE and may vanish soon.
- * Calls to set_vector should be replaced by calls to
+ * Calls to set_vector should be replaced by calls to
* rtems_interrupt_catch or _CPU_ISR_install_raw_handler.
*
* This routine installs an interrupt vector on the target Board/CPU.