diff options
author | Simon Glass <sjg@chromium.org> | 2019-12-28 10:45:07 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-01-17 17:53:40 -0500 |
commit | db41d65a97f335167e1fbc0400a83333b5157703 (patch) | |
tree | 6ac31cad782169c4fe60c6195ec7ed2ca4b6298f /lib | |
parent | 49acd56e4f1b0cb76af73bb1b22db20c81af3f78 (diff) | |
download | u-boot-db41d65a97f335167e1fbc0400a83333b5157703.zip u-boot-db41d65a97f335167e1fbc0400a83333b5157703.tar.gz u-boot-db41d65a97f335167e1fbc0400a83333b5157703.tar.bz2 |
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 'lib')
-rw-r--r-- | lib/fdtdec.c | 1 | ||||
-rw-r--r-- | lib/hang.c | 1 | ||||
-rw-r--r-- | lib/libavb/avb_sysdeps_posix.c | 1 | ||||
-rw-r--r-- | lib/panic.c | 1 | ||||
-rw-r--r-- | lib/zlib/zutil.c | 3 |
5 files changed, 6 insertions, 1 deletions
diff --git a/lib/fdtdec.c b/lib/fdtdec.c index f1bdc9f..17051d4 100644 --- a/lib/fdtdec.c +++ b/lib/fdtdec.c @@ -7,6 +7,7 @@ #include <common.h> #include <boot_fit.h> #include <dm.h> +#include <hang.h> #include <init.h> #include <dm/of_extra.h> #include <env.h> @@ -9,6 +9,7 @@ #include <common.h> #include <bootstage.h> +#include <hang.h> #include <os.h> /** diff --git a/lib/libavb/avb_sysdeps_posix.c b/lib/libavb/avb_sysdeps_posix.c index 4ccf41e..0bb0cc1 100644 --- a/lib/libavb/avb_sysdeps_posix.c +++ b/lib/libavb/avb_sysdeps_posix.c @@ -3,6 +3,7 @@ * Copyright (C) 2016 The Android Open Source Project */ +#include <hang.h> #include <stdarg.h> #include <stdlib.h> diff --git a/lib/panic.c b/lib/panic.c index bae8a35..8e72c26 100644 --- a/lib/panic.c +++ b/lib/panic.c @@ -10,6 +10,7 @@ */ #include <common.h> +#include <hang.h> #if !defined(CONFIG_PANIC_HANG) #include <command.h> #endif diff --git a/lib/zlib/zutil.c b/lib/zlib/zutil.c index 227343e..609aac5 100644 --- a/lib/zlib/zutil.c +++ b/lib/zlib/zutil.c @@ -6,6 +6,7 @@ /* @(#) $Id$ */ #include "zutil.h" +#include <hang.h> #ifndef NO_DUMMY_DECL struct internal_state {int dummy;}; /* for buggy compilers */ @@ -34,7 +35,7 @@ void z_error (m) char *m; { fprintf(stderr, "%s\n", m); - hang (); + hang(); } #endif |