diff options
author | Simon Glass <sjg@chromium.org> | 2019-12-28 20:45:07 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-01-18 01:53:40 +0300 |
commit | db41d65a97f335167e1fbc0400a83333b5157703 (patch) | |
tree | 6ac31cad782169c4fe60c6195ec7ed2ca4b6298f /common | |
parent | 49acd56e4f1b0cb76af73bb1b22db20c81af3f78 (diff) | |
download | u-boot-db41d65a97f335167e1fbc0400a83333b5157703.tar.xz |
common: Move hang() to the same header as panic()
At present panic() is in the vsprintf.h header file. That does not seem
like an obvious choice for hang(), even though it relates to panic(). So
let's put hang() in its own header.
Signed-off-by: Simon Glass <sjg@chromium.org>
[trini: Migrate a few more files]
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/board_f.c | 1 | ||||
-rw-r--r-- | common/board_r.c | 1 | ||||
-rw-r--r-- | common/bootstage.c | 1 | ||||
-rw-r--r-- | common/cli.c | 1 | ||||
-rw-r--r-- | common/spl/spl.c | 1 | ||||
-rw-r--r-- | common/spl/spl_opensbi.c | 1 |
6 files changed, 6 insertions, 0 deletions
diff --git a/common/board_f.c b/common/board_f.c index 3c6877da33..3f0132a6e3 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -20,6 +20,7 @@ #include <env_internal.h> #include <fdtdec.h> #include <fs.h> +#include <hang.h> #include <i2c.h> #include <init.h> #include <initcall.h> diff --git a/common/board_r.c b/common/board_r.c index 668496abed..8a0c1114e7 100644 --- a/common/board_r.c +++ b/common/board_r.c @@ -13,6 +13,7 @@ #include <api.h> #include <cpu_func.h> #include <exports.h> +#include <hang.h> #include <image.h> #include <irq_func.h> #include <net.h> diff --git a/common/bootstage.c b/common/bootstage.c index 79972e46f2..d2ed33663b 100644 --- a/common/bootstage.c +++ b/common/bootstage.c @@ -10,6 +10,7 @@ */ #include <common.h> +#include <hang.h> #include <malloc.h> #include <sort.h> #include <spl.h> diff --git a/common/cli.c b/common/cli.c index 67ceb635a6..7ffe902b88 100644 --- a/common/cli.c +++ b/common/cli.c @@ -15,6 +15,7 @@ #include <console.h> #include <env.h> #include <fdtdec.h> +#include <hang.h> #include <malloc.h> DECLARE_GLOBAL_DATA_PTR; diff --git a/common/spl/spl.c b/common/spl/spl.c index 19085ad270..932e6ab98a 100644 --- a/common/spl/spl.c +++ b/common/spl/spl.c @@ -11,6 +11,7 @@ #include <binman_sym.h> #include <dm.h> #include <handoff.h> +#include <hang.h> #include <irq_func.h> #include <serial.h> #include <spl.h> diff --git a/common/spl/spl_opensbi.c b/common/spl/spl_opensbi.c index 6404373eca..a136073fdb 100644 --- a/common/spl/spl_opensbi.c +++ b/common/spl/spl_opensbi.c @@ -8,6 +8,7 @@ #include <common.h> #include <cpu_func.h> #include <errno.h> +#include <hang.h> #include <spl.h> #include <asm/smp.h> #include <opensbi.h> |