arch/arm: Use 'print("%s...", __func__)'
Change-Id: I83fb453344c31f2cfa97bdaf1b8791a7bef97fd7 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/39380 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Julius Werner <jwerner@chromium.org>
This commit is contained in:
parent
4ebe6dff1a
commit
0afd3f41d6
|
@ -9,7 +9,7 @@
|
|||
int raise(int signum) __attribute__((used));
|
||||
int raise(int signum)
|
||||
{
|
||||
printk(BIOS_CRIT, "raise: Signal # %d caught\n", signum);
|
||||
printk(BIOS_CRIT, "%s: Signal # %d caught\n", __func__, signum);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue