fix(arm): fix comments referencing "SGI platform"
Currently, both N1SDP and TC platforms have references to "SGI" within
a comment in their respective source files. Fix this by replacing it
with the appropriate platform name.
Signed-off-by: Rohit Mathew <Rohit.Mathew@arm.com>
Change-Id: I523c3ef0bfa76d35819a8f776a08820ffd197c44
diff --git a/plat/arm/n1sdp/n1sdp_pwr_state.c b/plat/arm/n1sdp/n1sdp_pwr_state.c
index fcee7c4..d78f2ee 100644
--- a/plat/arm/n1sdp/n1sdp_pwr_state.c
+++ b/plat/arm/n1sdp/n1sdp_pwr_state.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2022, Arm Limited. All rights reserved.
+ * Copyright (c) 2022-2024, Arm Limited and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
@@ -7,7 +7,7 @@
#include <platform.h>
#include <psci.h>
-/* State IDs for local power states on SGI platforms. */
+/* State IDs for local power states on N1SDP platform. */
#define N1SDP_PS_RUN_STATE_ID 0 /* Valid for CPUs and Clusters */
#define N1SDP_PS_RETENTION_STATE_ID 1 /* Valid for only CPUs */
#define N1SDP_PS_OFF_STATE_ID 2 /* Valid for CPUs and Clusters */
diff --git a/plat/arm/tc/tc_pwr_state.c b/plat/arm/tc/tc_pwr_state.c
index 46d952b..97fcd97 100644
--- a/plat/arm/tc/tc_pwr_state.c
+++ b/plat/arm/tc/tc_pwr_state.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2020, Arm Limited. All rights reserved.
+ * Copyright (c) 2020-2024, Arm Limited and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
@@ -7,7 +7,7 @@
#include <platform.h>
#include <psci.h>
-/* State IDs for local power states on SGI platforms. */
+/* State IDs for local power states on TC platform. */
#define TC_PS_RUN_STATE_ID 0 /* Valid for CPUs and Clusters */
#define TC_PS_RETENTION_STATE_ID 1 /* Valid for only CPUs */
#define TC_PS_OFF_STATE_ID 2 /* Valid for CPUs and Clusters */