coreboot-kgpe-d16/src/include/reset.h

12 lines
168 B
C
Raw Normal View History

#ifndef RESET_H
#define RESET_H
#if CONFIG_HAVE_HARD_RESET == 1
void hard_reset(void);
#else
#define hard_reset() do {} while(0)
#endif
void soft_reset(void);
#endif