Newer
Older
barebox / pbl / misc.c
@Masahiro Yamada Masahiro Yamada on 12 Feb 2015 218 bytes pbl: remove start_barebox() stub
#include <common.h>
#include <init.h>
#include <linux/types.h>
#include <linux/string.h>
#include <linux/ctype.h>

void __noreturn hang(void)
{
	while (1);
}

void __noreturn panic(const char *fmt, ...)
{
	while(1);
}