]> git.ipfire.org Git - thirdparty/u-boot.git/blame - lib/panic.c
efi_loader: variable: attributes may not be changed if a variable exists
[thirdparty/u-boot.git] / lib / panic.c
CommitLineData
2b22a99c
SS
1/*
2 * linux/lib/vsprintf.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
7/* vsprintf.c -- Lars Wirzenius & Linus Torvalds. */
8/*
9 * Wirzenius wrote this portably, Torvalds fucked it up :-)
10 */
11
12#include <common.h>
13#if !defined(CONFIG_PANIC_HANG)
14#include <command.h>
15#endif
16
17static void panic_finish(void) __attribute__ ((noreturn));
18
19static void panic_finish(void)
20{
21 putc('\n');
22#if defined(CONFIG_PANIC_HANG)
23 hang();
24#else
25 udelay(100000); /* allow messages to go out */
26 do_reset(NULL, 0, 0, NULL);
27#endif
28 while (1)
29 ;
30}
31
32void panic_str(const char *str)
33{
34 puts(str);
35 panic_finish();
36}
37
38void panic(const char *fmt, ...)
39{
4f1eed75 40#if CONFIG_IS_ENABLED(PRINTF)
2b22a99c
SS
41 va_list args;
42 va_start(args, fmt);
43 vprintf(fmt, args);
44 va_end(args);
4f1eed75 45#endif
2b22a99c
SS
46 panic_finish();
47}
e21c03be
AK
48
49void __assert_fail(const char *assertion, const char *file, unsigned int line,
50 const char *function)
51{
52 /* This will not return */
53 panic("%s:%u: %s: Assertion `%s' failed.", file, line, function,
54 assertion);
55}