aboutsummaryrefslogtreecommitdiff
path: root/product/tc0/scp_ramfw/config_voltage_domain.c
diff options
context:
space:
mode:
authorNicola Mazzucato <nicola.mazzucato@arm.com>2024-01-09 12:54:53 +0000
committerNicola Mazzucato <nicola.mazzucato@arm.com>2024-01-12 17:09:37 +0000
commit97c8905f4c6b2c57ad2aab5ce3f545428e9792bf (patch)
treec9a37ce462abdd26f6d2837b6973f70c0558620f /product/tc0/scp_ramfw/config_voltage_domain.c
parentdcd622790378d3f3cb10d23a6b0a8b651cbf4025 (diff)
tc0: Remove platform code
TC0 platform was deprecated about a year ago. Now remove the platform code as per the project's rules. 858076b2363c: (tc0: Deprecate platform) Signed-off-by: Nicola Mazzucato <nicola.mazzucato@arm.com> Change-Id: I41b63ead658ee2592c3e422a3cd514c120156e01
Diffstat (limited to 'product/tc0/scp_ramfw/config_voltage_domain.c')
-rw-r--r--product/tc0/scp_ramfw/config_voltage_domain.c44
1 files changed, 0 insertions, 44 deletions
diff --git a/product/tc0/scp_ramfw/config_voltage_domain.c b/product/tc0/scp_ramfw/config_voltage_domain.c
deleted file mode 100644
index 6f4b0e39d782..000000000000
--- a/product/tc0/scp_ramfw/config_voltage_domain.c
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * Arm SCP/MCP Software
- * Copyright (c) 2021, Arm Limited and Contributors. All rights reserved.
- *
- * SPDX-License-Identifier: BSD-3-Clause
- */
-
-#include <config_mock_voltage_domain.h>
-
-#include <mod_mock_voltage_domain.h>
-#include <mod_voltage_domain.h>
-
-#include <fwk_element.h>
-#include <fwk_id.h>
-#include <fwk_module.h>
-#include <fwk_module_idx.h>
-
-#include <stdint.h>
-
-static const struct fwk_element voltage_domain_element_table[] = {
- [0] = {
- .name = "DUMMY_VOLTD",
- .data = &((const struct mod_voltd_dev_config){
- .driver_id = FWK_ID_ELEMENT_INIT(
- FWK_MODULE_IDX_MOCK_VOLTAGE_DOMAIN,
- CONFIG_MOCK_VOLTAGE_DOMAIN_ELEMENT_IDX_DUMMY),
- .api_id = FWK_ID_API_INIT(
- FWK_MODULE_IDX_MOCK_VOLTAGE_DOMAIN,
- MOD_MOCK_VOLTAGE_DOMAIN_API_IDX_VOLTD),
- }),
- },
-
- [1] = { 0 }, /* Termination description */
-};
-
-static const struct fwk_element *voltage_domain_get_element_table(
- fwk_id_t module_id)
-{
- return voltage_domain_element_table;
-}
-
-const struct fwk_module_config config_voltage_domain = {
- .elements = FWK_MODULE_DYNAMIC_ELEMENTS(voltage_domain_get_element_table),
-};