summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/hppa1.1/simhppa/tty
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-09-25 19:04:16 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-09-25 19:04:16 +0000
commitd9608233c78b8d95a62d2d903e46d2be27c0b690 (patch)
tree31fa2936517db7d0bc82728f7bacc69923f03984 /c/src/lib/libbsp/hppa1.1/simhppa/tty
parent2000-09-25 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-d9608233c78b8d95a62d2d903e46d2be27c0b690.tar.bz2
2000-09-25 Joel Sherrill <joel@OARcorp.com>
* include/bsp.h: tty_* renamed to console_*. * tty/tty.c: Ditto. * shmsupp/addrconv.c: Typo fixed. * wrapup/Makefile.am: Merge startup not start directory.
Diffstat (limited to 'c/src/lib/libbsp/hppa1.1/simhppa/tty')
-rw-r--r--c/src/lib/libbsp/hppa1.1/simhppa/tty/tty.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/c/src/lib/libbsp/hppa1.1/simhppa/tty/tty.c b/c/src/lib/libbsp/hppa1.1/simhppa/tty/tty.c
index cc854b1f25..5e976e1884 100644
--- a/c/src/lib/libbsp/hppa1.1/simhppa/tty/tty.c
+++ b/c/src/lib/libbsp/hppa1.1/simhppa/tty/tty.c
@@ -38,7 +38,7 @@ static int host_read_syscall(int fd, char *buffer, int count);
static int host_write_syscall(int fd, char *buffer, int count);
rtems_device_driver
-tty_initialize(
+console_initialize(
rtems_device_major_number major,
rtems_device_minor_number minor,
void * arg
@@ -56,7 +56,7 @@ tty_initialize(
}
rtems_device_driver
-tty_open(
+console_open(
rtems_device_major_number major,
rtems_device_minor_number minor,
void * arg
@@ -66,7 +66,7 @@ tty_open(
}
rtems_device_driver
-tty_close(
+console_close(
rtems_device_major_number major,
rtems_device_minor_number minor,
void * arg
@@ -76,7 +76,7 @@ tty_close(
}
rtems_device_driver
-tty_control(
+console_control(
rtems_device_major_number major,
rtems_device_minor_number minor,
void * arg
@@ -87,7 +87,7 @@ tty_control(
rtems_device_driver
-tty_read(
+console_read(
rtems_device_major_number major,
rtems_device_minor_number minor,
void * arg
@@ -123,7 +123,7 @@ tty_read(
}
rtems_device_driver
-tty_write(
+console_write(
rtems_device_major_number major,
rtems_device_minor_number minor,
void * arg