summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/sh
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-04-23 21:51:27 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-04-23 21:51:27 +0000
commit3e9f7f66fe77b0a2b00e269b949e75fe55a81af7 (patch)
treedb0c4b00ad82714c220a009fbe9408a47ba82dd7 /c/src/lib/libbsp/sh
parent2008-04-23 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-3e9f7f66fe77b0a2b00e269b949e75fe55a81af7.tar.bz2
2008-04-23 Joel Sherrill <joel.sherrill@OARcorp.com>
* console/console.c: Remove all references to console_reserve_resources and termios_reserve_resources.
Diffstat (limited to 'c/src/lib/libbsp/sh')
-rw-r--r--c/src/lib/libbsp/sh/gensh4/ChangeLog5
-rw-r--r--c/src/lib/libbsp/sh/gensh4/console/console.c17
-rw-r--r--c/src/lib/libbsp/sh/simsh4/ChangeLog5
-rw-r--r--c/src/lib/libbsp/sh/simsh4/console/console.c16
4 files changed, 10 insertions, 33 deletions
diff --git a/c/src/lib/libbsp/sh/gensh4/ChangeLog b/c/src/lib/libbsp/sh/gensh4/ChangeLog
index 016d4067c2..64d4cf7ef8 100644
--- a/c/src/lib/libbsp/sh/gensh4/ChangeLog
+++ b/c/src/lib/libbsp/sh/gensh4/ChangeLog
@@ -1,3 +1,8 @@
+2008-04-23 Joel Sherrill <joel.sherrill@OARcorp.com>
+
+ * console/console.c: Remove all references to console_reserve_resources
+ and termios_reserve_resources.
+
2008-03-03 Joel Sherrill <joel.sherrill@OARcorp.com>
* startup/linkcmds: Add wildcard to gcc_except_table section so
diff --git a/c/src/lib/libbsp/sh/gensh4/console/console.c b/c/src/lib/libbsp/sh/gensh4/console/console.c
index 358f632e77..ace780fb8f 100644
--- a/c/src/lib/libbsp/sh/gensh4/console/console.c
+++ b/c/src/lib/libbsp/sh/gensh4/console/console.c
@@ -188,23 +188,6 @@ console_last_close(int major, int minor, void *arg)
return RTEMS_SUCCESSFUL;
}
-/* console_reserve_resources --
- * reserve termios resources for 2 UART channels
- *
- * PARAMETERS:
- * configuration -- pointer to the RTEMS configuration table
- *
- * RETURNS:
- * none
- */
-void
-console_reserve_resources(rtems_configuration_table *configuration)
-{
- if ((console_mode != CONSOLE_MODE_RAW) &&
- (console_mode != CONSOLE_MODE_IPL))
- rtems_termios_reserve_resources (configuration, 2);
-}
-
/* console_initialize --
* This routine initializes the console IO drivers and register devices
* in RTEMS I/O system.
diff --git a/c/src/lib/libbsp/sh/simsh4/ChangeLog b/c/src/lib/libbsp/sh/simsh4/ChangeLog
index a6020f9db7..bb6ebfa796 100644
--- a/c/src/lib/libbsp/sh/simsh4/ChangeLog
+++ b/c/src/lib/libbsp/sh/simsh4/ChangeLog
@@ -1,3 +1,8 @@
+2008-04-23 Joel Sherrill <joel.sherrill@OARcorp.com>
+
+ * console/console.c: Remove all references to console_reserve_resources
+ and termios_reserve_resources.
+
2008-03-03 Joel Sherrill <joel.sherrill@OARcorp.com>
* startup/linkcmds, startup/linkcmds-le, startup/linkcmds-le.coff: Add
diff --git a/c/src/lib/libbsp/sh/simsh4/console/console.c b/c/src/lib/libbsp/sh/simsh4/console/console.c
index c0af42111b..b9d4ddbabf 100644
--- a/c/src/lib/libbsp/sh/simsh4/console/console.c
+++ b/c/src/lib/libbsp/sh/simsh4/console/console.c
@@ -183,22 +183,6 @@ console_last_close(int major, int minor, void *arg)
return RTEMS_SUCCESSFUL;
}
-/* console_reserve_resources --
- * reserve termios resources for 2 UART channels
- *
- * PARAMETERS:
- * configuration -- pointer to the RTEMS configuration table
- *
- * RETURNS:
- * none
- */
-void
-console_reserve_resources(rtems_configuration_table *configuration)
-{
- if (console_mode != CONSOLE_MODE_RAW)
- rtems_termios_reserve_resources (configuration, 1);
-}
-
/* console_initialize --
* This routine initializes the console IO drivers and register devices
* in RTEMS I/O system.