2010-04-28 Joel Sherrill <joel.sherrilL@OARcorp.com>

* startup/init5235.c: Remove warnings.
This commit is contained in:
Joel Sherrill
2010-04-28 19:43:25 +00:00
parent 8ccd1b09d7
commit b76232549e
2 changed files with 6 additions and 3 deletions

View File

@@ -1,3 +1,7 @@
2010-04-28 Joel Sherrill <joel.sherrilL@OARcorp.com>
* startup/init5235.c: Remove warnings.
2009-12-16 Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
* console/console.c: adapted to new prototype for *_write

View File

@@ -22,12 +22,12 @@
* do need to initialize the SDRAM.
*/
extern uint32_t MCF5235_BSP_START_FROM_FLASH;
extern void CopyDataClearBSSAndStart (void);
extern void INTERRUPT_VECTOR(void);
void Init5235 (void)
{
extern void CopyDataClearBSSAndStart (void);
int x;
volatile int temp = 0;
int *address_of_MCF5235_BSP_START_FROM_FLASH;
@@ -78,7 +78,6 @@ void Init5235 (void)
/* Copy the interrupt vector table to address 0x0 in SDRAM */
{
extern void INTERRUPT_VECTOR(void);
uint32_t *inttab = (uint32_t *)&INTERRUPT_VECTOR;
uint32_t *intvec = (uint32_t *)0x0;
register int i;