blob: a00975ba2d734fe701e846a44b9755f499bad261 [file] [log] [blame]
Angel Pons32859fc2020-04-02 23:48:27 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Patrick Georgi1b2f2a02014-11-28 22:00:22 +01002
3#ifndef __HALT_H__
4#define __HALT_H__
5
Patrick Georgi1b2f2a02014-11-28 22:00:22 +01006/**
7 * halt the system reliably
8 */
Aaron Durbin0370bcf2018-09-05 09:37:11 -06009void __noreturn halt(void);
Aaron Durbinb743b1a2016-07-13 12:00:49 -050010
11/* Power off the system. */
12void poweroff(void);
13
Patrick Georgi1b2f2a02014-11-28 22:00:22 +010014#endif /* __HALT_H__ */