summaryrefslogtreecommitdiffstats
path: root/src/arch/riscv/include/arch/hlt.h
blob: bdefbb5de72d93a34e1746ff831059b7a0b5d695 (plain)
1
2
3
4
5
6
/* SPDX-License-Identifier: GPL-2.0-only */

static __always_inline void hlt(void)
{
	while (1);
}