summaryrefslogtreecommitdiff
path: root/lib/vsprintf.c
diff options
context:
space:
mode:
authorAlex Kiernan <alex.kiernan@gmail.com>2018-04-19 04:32:56 +0000
committerTom Rini <trini@konsulko.com>2018-04-28 18:32:23 -0400
commite21c03be6d51ed8ab94885b6829cd0e719778a1e (patch)
treed655f67e9040194998a2c93e423eb8bfd33b841e /lib/vsprintf.c
parent4f1eed7527e256edd10fab85d2651a35e530509f (diff)
downloadu-boot-e21c03be6d51ed8ab94885b6829cd0e719778a1e.tar.gz
Consolidate __assert_failed into one implementation
We had two implementations of __assert_failed which were almost identical, combine them into one. Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
Diffstat (limited to 'lib/vsprintf.c')
-rw-r--r--lib/vsprintf.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/vsprintf.c b/lib/vsprintf.c
index 9f0ce8aa79..8514f50498 100644
--- a/lib/vsprintf.c
+++ b/lib/vsprintf.c
@@ -827,14 +827,6 @@ int vprintf(const char *fmt, va_list args)
}
#endif
-void __assert_fail(const char *assertion, const char *file, unsigned line,
- const char *function)
-{
- /* This will not return */
- panic("%s:%u: %s: Assertion `%s' failed.", file, line, function,
- assertion);
-}
-
char *simple_itoa(ulong i)
{
/* 21 digits plus null terminator, good for 64-bit or smaller ints */