summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i386/shared/comm/tty_drv.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/i386/shared/comm/tty_drv.h')
-rw-r--r--c/src/lib/libbsp/i386/shared/comm/tty_drv.h13
1 files changed, 3 insertions, 10 deletions
diff --git a/c/src/lib/libbsp/i386/shared/comm/tty_drv.h b/c/src/lib/libbsp/i386/shared/comm/tty_drv.h
index d84dd4d3a1..82319b3aa5 100644
--- a/c/src/lib/libbsp/i386/shared/comm/tty_drv.h
+++ b/c/src/lib/libbsp/i386/shared/comm/tty_drv.h
@@ -15,6 +15,9 @@
* MODIFICATION/HISTORY:
*
* $Log$
+ * Revision 1.3 2004/04/21 10:42:44 ralf
+ * Remove stray white spaces.
+ *
* Revision 1.2 2004/04/15 13:26:12 ralf
* Remove stray white spaces.
*
@@ -38,7 +41,6 @@
extern "C" {
#endif
-
/* ttyS1 entry points */
rtems_device_driver tty1_initialize(
rtems_device_major_number,
@@ -58,7 +60,6 @@ rtems_device_driver tty1_control(
void *
);
-
/* tty1 & tty2 shared entry points */
rtems_device_driver tty_close(
rtems_device_major_number,
@@ -66,7 +67,6 @@ rtems_device_driver tty_close(
void *
);
-
rtems_device_driver tty_read(
rtems_device_major_number,
rtems_device_minor_number,
@@ -79,8 +79,6 @@ rtems_device_driver tty_write(
void *
);
-
-
/* tty2 entry points */
rtems_device_driver tty2_initialize(
rtems_device_major_number,
@@ -100,19 +98,14 @@ rtems_device_driver tty2_control(
void *
);
-
-
#define TTY1_DRIVER_TABLE_ENTRY \
{ tty1_initialize, tty1_open, tty_close, \
tty_read, tty_write, tty1_control }
-
#define TTY2_DRIVER_TABLE_ENTRY \
{ tty2_initialize, tty2_open, tty_close, \
tty_read, tty_write, tty2_control }
-
-
#ifdef __cplusplus
}
#endif