summaryrefslogtreecommitdiffstats
path: root/src/arch/riscv/include/arch/hlt.h
blob: 4020defe30b3a95b0a68f3c323422c692f65ceea (plain)
1
2
3
4
5
6
7
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

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