1 /*
2  * Arm SCP/MCP Software
3  * Copyright (c) 2020-2021, Arm Limited and Contributors. All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  */
7 
8 #include <mod_scmi_system_power.h>
9 #include <mod_system_power.h>
10 
11 #include <fwk_module.h>
12 
13 const struct fwk_module_config config_scmi_system_power = {
14     .data = &((struct mod_scmi_system_power_config){
15         .system_view = MOD_SCMI_SYSTEM_VIEW_FULL,
16         .system_suspend_state = MOD_SYSTEM_POWER_POWER_STATE_SLEEP0,
17         .alarm_id = FWK_ID_NONE_INIT }),
18 };
19