summaryrefslogtreecommitdiffstats
path: root/include/autoboot.h
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2014-04-10 20:01:28 -0600
committerTom Rini <trini@ti.com>2014-05-29 17:45:31 -0400
commit66ded17dfc8110f0d9aa9d50fe140a320bfa4e53 (patch)
treefc9363d14bfa87a18de989e9e85d74736062675a /include/autoboot.h
parente1bf824dfd6881f6f633238c275bfa1e5d83c433 (diff)
downloadblackbird-obmc-uboot-66ded17dfc8110f0d9aa9d50fe140a320bfa4e53.tar.gz
blackbird-obmc-uboot-66ded17dfc8110f0d9aa9d50fe140a320bfa4e53.zip
Move autoboot code to autoboot.c
The autoboot code is complex and long. It deserves its own file with a simple interface from main.c. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/autoboot.h')
-rw-r--r--include/autoboot.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/include/autoboot.h b/include/autoboot.h
new file mode 100644
index 0000000000..aaae4afff4
--- /dev/null
+++ b/include/autoboot.h
@@ -0,0 +1,23 @@
+/*
+ * (C) Copyright 2000
+ * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
+ *
+ * Add to readline cmdline-editing by
+ * (C) Copyright 2005
+ * JinHua Luo, GuangDong Linux Center, <luo.jinhua@gd-linux.com>
+ *
+ * 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
OpenPOWER on IntegriCloud