This patch unifies the use of config options in v2 to all start with CONFIG_
[coreboot.git] / src / include / part / fallback_boot.h
1 #ifndef PART_FALLBACK_BOOT_H
2 #define PART_FALLBACK_BOOT_H
3
4 #ifndef ASSEMBLY
5
6 #if CONFIG_HAVE_FALLBACK_BOOT == 1
7 void set_boot_successful(void);
8 #else
9 #define set_boot_successful()
10 #endif
11
12 void boot_successful(void);
13
14 #endif /* ASSEMBLY */
15
16 #define RTC_BOOT_BYTE   48
17
18 #endif /* PART_FALLBACK_BOOT_H */