1 /*
2  * Arm SCP/MCP Software
3  * Copyright (c) 2019-2021, Arm Limited and Contributors. All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  */
7 
8 #include <mod_juno_ram.h>
9 
10 #include <fwk_id.h>
11 #include <fwk_module.h>
12 #include <fwk_module_idx.h>
13 
14 struct fwk_module_config config_juno_ram = {
15     .data = &(struct mod_juno_ram_config) {
16         .timer_id = FWK_ID_ELEMENT_INIT(FWK_MODULE_IDX_TIMER, 0),
17         },
18 };
19