summaryrefslogtreecommitdiffstats
path: root/src/arch/arm/include/arch/hlt.h
blob: 064d42583a50d75fe2730f01b8e2963f63bbeae7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#ifndef ARCH_HLT_H
#define ARCH_HLT_H

static __always_inline void hlt(void)
{
	for (;;) ;
}

#endif /* ARCH_HLT_H */