blob: aaae4afff4b31bb0360260ff658f1f10d628a4a4 [file] [log] [blame]
Simon Glass66ded172014-04-10 20:01:28 -06001/*
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
16void bootdelay_process(void);
17#else
18static inline void bootdelay_process(void)
19{
20}
21#endif
22
23#endif