sparc64/shared/startup/bspstart.c: Add include of <bsp/bootcard.h> to fix warning and clean up

This commit is contained in:
Joel Sherrill
2014-10-07 17:40:00 -05:00
parent 978ad76ec2
commit 14b197ad61

View File

@@ -1,9 +1,8 @@
/* /*
* This routine starts the application. It includes application, * This routine does the bulk of the system initialization.
* board, and monitor specific initialization and configuration. */
* The generic CPU dependent initialization has been performed
* before this routine is invoked. /*
*
* COPYRIGHT (c) 1989-1999. * COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR). * On-Line Applications Research Corporation (OAR).
* *
@@ -12,20 +11,12 @@
* http://www.rtems.org/license/LICENSE. * http://www.rtems.org/license/LICENSE.
*/ */
#include <string.h>
#include <bsp.h> #include <bsp.h>
#include <bsp/bootcard.h>
extern void sparc64_install_isr_entries(void); extern void sparc64_install_isr_entries(void);
/*
* bsp_start
*
* This routine does the bulk of the system initialization.
*/
void bsp_start( void ) void bsp_start( void )
{ {
/* bootstrap(); */ sparc64_install_isr_entries();
sparc64_install_isr_entries();
} }