diff --git a/product/neoverse-rd/rdv3/module/scp_platform/include/internal/scp_platform.h b/product/neoverse-rd/rdv3/module/scp_platform/include/internal/scp_platform.h index 7a9a2935c72b2f06ff006eb5056ee772a032565b..f2074218c7449a984fa736198af280991cce9bcf 100644 --- a/product/neoverse-rd/rdv3/module/scp_platform/include/internal/scp_platform.h +++ b/product/neoverse-rd/rdv3/module/scp_platform/include/internal/scp_platform.h @@ -1,6 +1,6 @@ /* * Arm SCP/MCP Software - * Copyright (c) 2024, Arm Limited and Contributors. All rights reserved. + * Copyright (c) 2025, Arm Limited and Contributors. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause * @@ -15,6 +15,17 @@ #define MOD_NAME "[SCP_PLATFORM]" +/*! + * \brief Module context. + */ +struct scp_platform_ctx { + /* Module config data */ + const struct mod_scp_platform_config *config; + + /* System Information HAL API pointer */ + struct mod_system_info_get_info_api *system_info_api; +}; + /* * RSS communication interface helper functions. */ diff --git a/product/neoverse-rd/rdv3/module/scp_platform/src/mod_scp_platform.c b/product/neoverse-rd/rdv3/module/scp_platform/src/mod_scp_platform.c index 42098b40e1af074d438c8a9657892a7d84aefacf..4ff9f60fe66bc71526b3504d82f714d98cd9a9d1 100644 --- a/product/neoverse-rd/rdv3/module/scp_platform/src/mod_scp_platform.c +++ b/product/neoverse-rd/rdv3/module/scp_platform/src/mod_scp_platform.c @@ -1,6 +1,6 @@ /* * Arm SCP/MCP Software - * Copyright (c) 2024, Arm Limited and Contributors. All rights reserved. + * Copyright (c) 2025, Arm Limited and Contributors. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause * @@ -21,15 +21,6 @@ #include #include -/* Module context */ -struct scp_platform_ctx { - /* Module config data */ - const struct mod_scp_platform_config *config; - - /* System Information HAL API pointer */ - struct mod_system_info_get_info_api *system_info_api; -}; - /* Module context data */ struct scp_platform_ctx scp_platform_ctx;