/* * Arm SCP/MCP Software * Copyright (c) 2017-2021, Arm Limited and Contributors. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ #include "scp_rdn1e1_scmi.h" #include #include #include #include static const struct mod_scmi_perf_domain_config domains[] = { [0] = { }, [1] = { }, }; const struct fwk_module_config config_scmi_perf = { .data = &((struct mod_scmi_perf_config){ .domains = &domains, .perf_doms_count = FWK_ARRAY_SIZE(domains), .fast_channels_alarm_id = FWK_ID_NONE_INIT, }), };