[rtems commit] bsp/virtex: Fix warnings
Sebastian Huber
sebh at rtems.org
Mon Jun 24 08:48:40 UTC 2013
Module: rtems
Branch: master
Commit: ad094f46ab15dde7f4f8969c132c5ee0858605f1
Changeset: http://git.rtems.org/rtems/commit/?id=ad094f46ab15dde7f4f8969c132c5ee0858605f1
Author: Sebastian Huber <sebastian.huber at embedded-brains.de>
Date: Tue Jun 18 16:26:25 2013 +0200
bsp/virtex: Fix warnings
---
c/src/lib/libbsp/powerpc/virtex/startup/bspstart.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/c/src/lib/libbsp/powerpc/virtex/startup/bspstart.c b/c/src/lib/libbsp/powerpc/virtex/startup/bspstart.c
index 0d6e48b..7bcab44 100644
--- a/c/src/lib/libbsp/powerpc/virtex/startup/bspstart.c
+++ b/c/src/lib/libbsp/powerpc/virtex/startup/bspstart.c
@@ -94,8 +94,8 @@ void bsp_start( void )
* function store the result in global variables
* so that it can be used latter...
*/
- myCpu = get_ppc_cpu_type();
- myCpuRevision = get_ppc_cpu_revision();
+ get_ppc_cpu_type();
+ get_ppc_cpu_revision();
/*
* initialize the device driver parameters
More information about the vc
mailing list