more warning fixes.

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5242 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer
2010-03-17 03:14:54 +00:00
committed by Stefan Reinauer
parent b319b1778c
commit bd112980ff
11 changed files with 24 additions and 3 deletions

View File

@ -1,6 +1,9 @@
#ifndef RESET_H
#define RESET_H
#if !defined( __ROMCC__ )
/* ROMCC can't do function prototypes... */
#if CONFIG_HAVE_HARD_RESET == 1
void hard_reset(void);
#else
@ -9,3 +12,4 @@ void hard_reset(void);
void soft_reset(void);
#endif
#endif