2008-08-18 Ralf Corsépius <ralf.corsepius@rtems.org>

* startup/bspstart.c: Add missing prototypes.
This commit is contained in:
Ralf Corsepius
2008-08-18 21:06:25 +00:00
parent 3ad0c50ea0
commit 166cc98c58
2 changed files with 6 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
2008-08-18 Ralf Corsépius <ralf.corsepius@rtems.org>
* startup/bspstart.c: Add missing prototypes.
2008-05-14 Joel Sherrill <joel.sherrill@OARcorp.com>
* Makefile.am: Rework to avoid .rel files.

View File

@@ -32,7 +32,7 @@ unsigned long free_mem_end;
/* Function prototypes */
extern void rtems_irq_mngt_init(void);
void bsp_libc_init( void *, uint32_t, int );
static void fix_mac_addr();
static void fix_mac_addr(void);
/**************************************************************************/
/* */
@@ -127,7 +127,7 @@ void bsp_start_default( void )
* reverse the MAC address. This function tests for that,
* and fixes the MAC address.
*/
static void fix_mac_addr()
static void fix_mac_addr(void)
{
uint8_t addr[6];