7ce1a75602
Don't implement arch or driver -specific code under lib/, Change-Id: If75980ec5efc622582e2b5e124ad0e7ee3fa39a3 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/17793 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
13 lines
207 B
C
13 lines
207 B
C
#ifndef FALLBACK_H
|
|
#define FALLBACK_H
|
|
|
|
#if !defined(__ASSEMBLER__)
|
|
|
|
void boot_successful(void);
|
|
void set_boot_successful(void);
|
|
|
|
#endif /* __ASSEMBLER__ */
|
|
|
|
#define RTC_BOOT_BYTE 48
|
|
|
|
#endif /* FALLBACK_H */
|