aboutsummaryrefslogtreecommitdiff
path: root/src/include/cpu/x86/bist.h
blob: 6a62150c688101b9f2bb68fdd83bb3781a7eacaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef CPU_X86_BIST_H
#define CPU_X86_BIST_H

static void report_bist_failure(unsigned long bist)
{
	if (bist != 0) {
		print_emerg("BIST failed: ");
		print_emerg_hex32(bist);
		die("\r\n");
	}
}

#endif /* CPU_Xf86_BIST_H */