summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2006-12-13 14:46:41 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2006-12-13 14:46:41 +0000
commit460cd5b72892e6220b7dc1244c136bd24c0847d4 (patch)
tree5650df8813bd23532d0c1f7d2a68670b9e987351 /c
parent2006-12-13 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-460cd5b72892e6220b7dc1244c136bd24c0847d4.tar.bz2
2006-12-13 Joel Sherrill <joel@OARcorp.com>
PR 1190/bsps * bootcard.c: Remove status since unused.
Diffstat (limited to 'c')
-rw-r--r--c/src/lib/libbsp/shared/ChangeLog5
-rw-r--r--c/src/lib/libbsp/shared/bootcard.c3
2 files changed, 6 insertions, 2 deletions
diff --git a/c/src/lib/libbsp/shared/ChangeLog b/c/src/lib/libbsp/shared/ChangeLog
index 3685454c46..2d3fe3e93e 100644
--- a/c/src/lib/libbsp/shared/ChangeLog
+++ b/c/src/lib/libbsp/shared/ChangeLog
@@ -1,3 +1,8 @@
+2006-12-13 Joel Sherrill <joel@OARcorp.com>
+
+ PR 1190/bsps
+ * bootcard.c: Remove status since unused.
+
2006-11-29 Till Straumann <strauman@slac.stanford.edu>
* vmeUniverse/vmeTsi148.h: user now must define a symbol
diff --git a/c/src/lib/libbsp/shared/bootcard.c b/c/src/lib/libbsp/shared/bootcard.c
index f8a18ed547..d9edd7887e 100644
--- a/c/src/lib/libbsp/shared/bootcard.c
+++ b/c/src/lib/libbsp/shared/bootcard.c
@@ -65,7 +65,6 @@ char *rtems_progname;
int boot_card(int argc, char **argv, char **envp)
{
- int status;
static char *argv_pointer = NULL;
static char *envp_pointer = NULL;
char **argv_p = &argv_pointer;
@@ -158,5 +157,5 @@ int boot_card(int argc, char **argv, char **envp)
* Now return to the start code.
*/
- return status;
+ return 0;
}