blob: dda2c305ed57ca96844aaa06e222388fa32d1866 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef FALLBACK_H
#define FALLBACK_H
void boot_successful(void);
void set_boot_successful(void);
int do_normal_boot(void);
#endif /* FALLBACK_H */
|