blob: 8d9e5c84a6cadf7f0b538992a42bea51ef3ac376 [file] [log] [blame]
Angel Pons118a9c72020-04-02 23:48:34 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Patrick Georgi1b2f2a02014-11-28 22:00:22 +01002
3#include <arch/hlt.h>
4#include <halt.h>
5
Lee Leahy342f8d62017-03-10 15:31:56 -08006void halt(void)
7{
Lee Leahy2f919ec2017-03-08 17:37:06 -08008 while (1)
Patrick Georgi1b2f2a02014-11-28 22:00:22 +01009 hlt();
Patrick Georgi1b2f2a02014-11-28 22:00:22 +010010}