[rtems commit] mbx8xx/startup/bspstart.c: Remove myCpu variables and clean up

Joel Sherrill joel at rtems.org
Thu Oct 16 13:50:01 UTC 2014


Module:    rtems
Branch:    master
Commit:    0549cd75e023d47f9e1b00951c0508e86680236d
Changeset: http://git.rtems.org/rtems/commit/?id=0549cd75e023d47f9e1b00951c0508e86680236d

Author:    Joel Sherrill <joel.sherrill at oarcorp.com>
Date:      Mon Oct 13 15:52:00 2014 -0500

mbx8xx/startup/bspstart.c: Remove myCpu variables and clean up

---

 c/src/lib/libbsp/powerpc/mbx8xx/startup/bspstart.c |   12 +++++-------
 1 files changed, 5 insertions(+), 7 deletions(-)

diff --git a/c/src/lib/libbsp/powerpc/mbx8xx/startup/bspstart.c b/c/src/lib/libbsp/powerpc/mbx8xx/startup/bspstart.c
index b67f0b9..9b63afb 100644
--- a/c/src/lib/libbsp/powerpc/mbx8xx/startup/bspstart.c
+++ b/c/src/lib/libbsp/powerpc/mbx8xx/startup/bspstart.c
@@ -82,15 +82,13 @@ void _BSP_Fatal_error(unsigned int v)
  */
 void bsp_start(void)
 {
-  ppc_cpu_id_t myCpu;
-  ppc_cpu_revision_t myCpuRevision;
-
   /*
-   * Get CPU identification dynamically. Note that the get_ppc_cpu_type() function
-   * store the result in global variables so that it can be used latter...
+   * Get CPU identification dynamically. Note that the get_ppc_cpu_type()
+   * function stores the result in global variables so that it can be used
+   * later...
    */
-  myCpu 	= get_ppc_cpu_type();
-  myCpuRevision = get_ppc_cpu_revision();
+  get_ppc_cpu_type();
+  get_ppc_cpu_revision();
 
   mmu_init();
 



More information about the vc mailing list