ArmPkg: Fix Ecc error 8005 for SCMI_MESSAGE_ID_CLOCK

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:24:52 +00:00
committed by mergify[bot]
parent 1f93d0c5a3
commit bd8efb4f8e
2 changed files with 10 additions and 10 deletions

View File

@@ -22,11 +22,11 @@ extern EFI_GUID gArmScmiClockProtocolGuid;
// Message Type for clock management protocol.
typedef enum {
SCMI_MESSAGE_ID_CLOCK_ATTRIBUTES = 0x3,
SCMI_MESSAGE_ID_CLOCK_DESCRIBE_RATES = 0x4,
SCMI_MESSAGE_ID_CLOCK_RATE_SET = 0x5,
SCMI_MESSAGE_ID_CLOCK_RATE_GET = 0x6,
SCMI_MESSAGE_ID_CLOCK_CONFIG_SET = 0x7
ScmiMessageIdClockAttributes = 0x3,
ScmiMessageIdClockDescribeRates = 0x4,
ScmiMessageIdClockRateSet = 0x5,
ScmiMessageIdClockRateGet = 0x6,
ScmiMessageIdClockConfigSet = 0x7
} SCMI_MESSAGE_ID_CLOCK;
typedef enum {