blob: 441f5bb78672bfccf9827f2f8dcc0bfe4d67a12a [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
Maximilian Bruneb3e336c2023-09-16 19:49:39 +02006void __noreturn abort(void)
Lee Leahy342f8d62017-03-10 15:31:56 -08007{
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}