ArmPkg: Fix Ecc error 8005 for SCMI_MESSAGE_ID

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 <Pierre.Gondois@arm.com>
Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>
This commit is contained in:
Pierre Gondois 2021-01-15 17:07:24 +00:00 committed by mergify[bot]
parent dc6c6397b8
commit 84262ca3d9
2 changed files with 6 additions and 6 deletions

View File

@ -195,7 +195,7 @@ ScmiGetProtocolVersion (
Status = ScmiProtocolDiscoveryCommon (
ProtocolId,
SCMI_MESSAGE_ID_PROTOCOL_VERSION,
ScmiMessageIdProtocolVersion,
(UINT32**)&ProtocolVersion
);
if (EFI_ERROR (Status)) {
@ -224,7 +224,7 @@ ScmiGetProtocolAttributes (
{
return ScmiProtocolDiscoveryCommon (
ProtocolId,
SCMI_MESSAGE_ID_PROTOCOL_ATTRIBUTES,
ScmiMessageIdProtocolAttributes,
ReturnValues
);
}
@ -246,7 +246,7 @@ ScmiGetProtocolMessageAttributes (
{
return ScmiProtocolDiscoveryCommon (
ProtocolId,
SCMI_MESSAGE_ID_PROTOCOL_MESSAGE_ATTRIBUTES,
ScmiMessageIdProtocolMessageAttributes,
ReturnValues
);
}

View File

@ -45,9 +45,9 @@ typedef enum {
// SCMI message IDs common to all protocols.
typedef enum {
SCMI_MESSAGE_ID_PROTOCOL_VERSION = 0x0,
SCMI_MESSAGE_ID_PROTOCOL_ATTRIBUTES = 0x1,
SCMI_MESSAGE_ID_PROTOCOL_MESSAGE_ATTRIBUTES = 0x2
ScmiMessageIdProtocolVersion = 0x0,
ScmiMessageIdProtocolAttributes = 0x1,
ScmiMessageIdProtocolMessageAttributes = 0x2
} SCMI_MESSAGE_ID;
// Not defined in SCMI specification but will help to identify a message.