예제 #1
0
void
cpu_reset(void)
{

	sbi_shutdown();

	while(1);
}
예제 #2
0
파일: reset.c 프로젝트: avagin/linux
static void default_power_off(void)
{
	sbi_shutdown();
	while (1);
}
예제 #3
0
파일: reset.c 프로젝트: asb/riscv-linux
void machine_power_off(void)
{
  sbi_shutdown();
}