diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/autoboot.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/include/autoboot.h b/include/autoboot.h new file mode 100644 index 00000000000..aaae4afff4b --- /dev/null +++ b/include/autoboot.h @@ -0,0 +1,23 @@ +/* + * (C) Copyright 2000 + * Wolfgang Denk, DENX Software Engineering, [email protected]. + * + * Add to readline cmdline-editing by + * (C) Copyright 2005 + * JinHua Luo, GuangDong Linux Center, <[email protected]> + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#ifndef __AUTOBOOT_H +#define __AUTOBOOT_H + +#ifdef CONFIG_BOOTDELAY +void bootdelay_process(void); +#else +static inline void bootdelay_process(void) +{ +} +#endif + +#endif |
