From 1f93d0c5a3159ef7a3d1a45c659f8b43c00aa522 Mon Sep 17 00:00:00 2001 From: Pierre Gondois Date: Fri, 15 Jan 2021 17:21:02 +0000 Subject: ArmPkg: Fix Ecc error 8005 for SCMI_MESSAGE_ID_BASE This patch fixes the following Ecc reported error: Variable name does not follow the rules: 1. First character should be upper case 2. Must contain lower case characters 3. No white space characters 4. Global variable name must start with a 'g' Signed-off-by: Pierre Gondois Reviewed-by: Sami Mujawar --- ArmPkg/Include/Protocol/ArmScmiBaseProtocol.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'ArmPkg/Include/Protocol') diff --git a/ArmPkg/Include/Protocol/ArmScmiBaseProtocol.h b/ArmPkg/Include/Protocol/ArmScmiBaseProtocol.h index 2f93ec9232..73ad3e32a2 100644 --- a/ArmPkg/Include/Protocol/ArmScmiBaseProtocol.h +++ b/ArmPkg/Include/Protocol/ArmScmiBaseProtocol.h @@ -1,6 +1,6 @@ /** @file - Copyright (c) 2017-2018, Arm Limited. All rights reserved. + Copyright (c) 2017-2021, Arm Limited. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent @@ -158,10 +158,10 @@ typedef struct _SCMI_BASE_PROTOCOL { // SCMI Message IDs for Base protocol. typedef enum { - SCMI_MESSAGE_ID_BASE_DISCOVER_VENDOR = 0x3, - SCMI_MESSAGE_ID_BASE_DISCOVER_SUB_VENDOR = 0x4, - SCMI_MESSAGE_ID_BASE_DISCOVER_IMPLEMENTATION_VERSION = 0x5, - SCMI_MESSAGE_ID_BASE_DISCOVER_LIST_PROTOCOLS = 0x6 + ScmiMessageIdBaseDiscoverVendor = 0x3, + ScmiMessageIdBaseDiscoverSubVendor = 0x4, + ScmiMessageIdBaseDiscoverImplementationVersion = 0x5, + ScmiMessageIdBaseDiscoverListProtocols = 0x6 } SCMI_MESSAGE_ID_BASE; #endif /* ARM_SCMI_BASE_PROTOCOL_H_ */ -- cgit v1.2.3