Move autoboot code to autoboot.c
[platform/kernel/u-boot.git] / include / autoboot.h
1 /*
2  * (C) Copyright 2000
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  *
5  * Add to readline cmdline-editing by
6  * (C) Copyright 2005
7  * JinHua Luo, GuangDong Linux Center, <luo.jinhua@gd-linux.com>
8  *
9  * SPDX-License-Identifier:     GPL-2.0+
10  */
11
12 #ifndef __AUTOBOOT_H
13 #define __AUTOBOOT_H
14
15 #ifdef CONFIG_BOOTDELAY
16 void bootdelay_process(void);
17 #else
18 static inline void bootdelay_process(void)
19 {
20 }
21 #endif
22
23 #endif