repo.or.cz
/
coreboot2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
include/spd_bin.h: Add SPD IO layer
[coreboot2.git]
/
src
/
include
/
halt.h
blob
cb691a202b229264e19dac208080b2bb5e0f20fc
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
#ifndef __HALT_H__
4
#define __HALT_H__
5
6
#include <arch/hlt.h>
7
#include <commonlib/bsd/stdlib.h>
8
9
static
inline
__noreturn
void
halt
(
void
)
10
{
11
abort
();
12
}
13
14
/* Power off the system. */
15
void
poweroff
(
void
);
16
17
#endif
/* __HALT_H__ */