blob: baf868412840d7d5e7361b4e002108938067e8ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef FALLBACK_H
#define FALLBACK_H
#ifndef ASSEMBLY
#if CONFIG_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 /* FALLBACK_H */
|