diff options
author | Simon Glass <sjg@chromium.org> | 2019-12-28 10:44:39 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-01-17 13:26:48 -0500 |
commit | 6b8d3ceaf59a6c4a2d3930aa8fa0c33e15093498 (patch) | |
tree | ebe9280c23bc2036eee040906ee7aac5717c7e99 /include/common.h | |
parent | 011b5725a89c7fc658109d1dce2ad0d7bcd1db02 (diff) | |
download | u-boot-6b8d3ceaf59a6c4a2d3930aa8fa0c33e15093498.tar.gz |
common: Move main_loop() to init.h
Move this function out of common.h and into a better place.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
Diffstat (limited to 'include/common.h')
-rw-r--r-- | include/common.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/common.h b/include/common.h index 8ac5fca9ee..c35af99f02 100644 --- a/include/common.h +++ b/include/common.h @@ -63,9 +63,6 @@ void hang (void) __attribute__ ((noreturn)); #include <display_options.h> -/* common/main.c */ -void main_loop (void); - int checkflash(void); int checkdram(void); extern u8 __dtb_dt_begin[]; /* embedded device tree blob */ |