This is a general cleanup patch
[coreboot.git] / src / include / reset.h
1 #ifndef RESET_H
2 #define RESET_H
3
4 #if CONFIG_HAVE_HARD_RESET == 1
5 void hard_reset(void);
6 #else
7 #define hard_reset() do {} while(0)
8 #endif
9 void soft_reset(void);
10
11 #endif