2020-04-02 23:48:34 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2014-11-28 22:00:22 +01:00
|
|
|
|
|
|
|
#include <arch/hlt.h>
|
|
|
|
#include <halt.h>
|
|
|
|
|
2017-03-11 00:31:56 +01:00
|
|
|
void halt(void)
|
|
|
|
{
|
2017-03-09 02:37:06 +01:00
|
|
|
while (1)
|
2014-11-28 22:00:22 +01:00
|
|
|
hlt();
|
|
|
|
}
|