forked from Imagelibrary/rtems
Remove bogus local declarations.
This commit is contained in:
@@ -18,8 +18,6 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* must be identical to STACK_SIZE in start.S */
|
|
||||||
#define STACK_SIZE 16 * 1024
|
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
@@ -27,6 +25,9 @@
|
|||||||
#include <bsp/bootcard.h>
|
#include <bsp/bootcard.h>
|
||||||
#include <rtems/bspIo.h>
|
#include <rtems/bspIo.h>
|
||||||
|
|
||||||
|
/* must be identical to STACK_SIZE in start.S */
|
||||||
|
#define STACK_SIZE 16 * 1024
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Tells us where to put the workspace in case remote debugger is present.
|
* Tells us where to put the workspace in case remote debugger is present.
|
||||||
*/
|
*/
|
||||||
@@ -65,8 +66,6 @@ static inline int set_snooping(void)
|
|||||||
|
|
||||||
void bsp_pretasking_hook(void)
|
void bsp_pretasking_hook(void)
|
||||||
{
|
{
|
||||||
extern void bsp_spurious_initialize();
|
|
||||||
|
|
||||||
bsp_spurious_initialize();
|
bsp_spurious_initialize();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -84,8 +83,6 @@ void bsp_get_work_area(
|
|||||||
{
|
{
|
||||||
/* Tells us where to put the workspace in case remote debugger is present. */
|
/* Tells us where to put the workspace in case remote debugger is present. */
|
||||||
extern uint32_t rdb_start;
|
extern uint32_t rdb_start;
|
||||||
/* must be identical to STACK_SIZE in start.S */
|
|
||||||
#define STACK_SIZE (16 * 1024)
|
|
||||||
|
|
||||||
*work_area_start = &end;
|
*work_area_start = &end;
|
||||||
*work_area_size = (void *)rdb_start - (void *)&end - STACK_SIZE;
|
*work_area_size = (void *)rdb_start - (void *)&end - STACK_SIZE;
|
||||||
|
|||||||
Reference in New Issue
Block a user