mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
indent -npro -kr -i8 -ts8 -sob -l80 -ss -ncs *.[ch] (trivial) Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@65 f3766cd6-281f-0410-b1cd-43a5c92072e9
18 lines
299 B
C
18 lines
299 B
C
#ifndef PART_FALLBACK_BOOT_H
|
|
#define PART_FALLBACK_BOOT_H
|
|
|
|
#ifndef ASSEMBLY
|
|
|
|
#if HAVE_FALLBACK_BOOT == 1
|
|
void set_boot_successful(void);
|
|
#else
|
|
#define set_boot_successful()
|
|
#endif
|
|
|
|
void boot_successful(void);
|
|
|
|
#endif /* ASSEMBLY */
|
|
|
|
#define RTC_BOOT_BYTE 48
|
|
|
|
#endif /* PART_FALLBACK_BOOT_H */
|