1 /*
2  * Copyright (c) 2024 Nordic Semiconductor ASA
3  * SPDX-License-Identifier: Apache-2.0
4  */
5 
6 /**
7  * @file Common power.h include for Nordic SoCs.
8  */
9 
10 #ifndef _ZEPHYR_SOC_ARM_NORDIC_NRF_POWER_H_
11 #define _ZEPHYR_SOC_ARM_NORDIC_NRF_POWER_H_
12 
13 /**
14  * @brief Perform a power off.
15  *
16  * This function performs a power off of the core.
17  */
18 void nrf_poweroff(void);
19 
20 #endif /* _ZEPHYR_SOC_ARM_NORDIC_NRF_POWER_H_ */
21