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
16 lines
246 B
C
16 lines
246 B
C
#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
|
|
#define hard_reset() do {} while(0)
|
|
#endif
|
|
void soft_reset(void);
|
|
|
|
#endif
|
|
#endif
|