diff options
author | Pierre Gondois <Pierre.Gondois@arm.com> | 2021-01-15 17:24:52 +0000 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2021-04-15 19:53:39 +0000 |
commit | bd8efb4f8e805337599e2fe7eb2b84bb5b38e282 (patch) | |
tree | 62b2a9caf0b6177d44bc9119ad0ef3f610ad2026 /ArmPkg/Include/Protocol | |
parent | 1f93d0c5a3159ef7a3d1a45c659f8b43c00aa522 (diff) | |
download | edk2-bd8efb4f8e805337599e2fe7eb2b84bb5b38e282.zip edk2-bd8efb4f8e805337599e2fe7eb2b84bb5b38e282.tar.gz edk2-bd8efb4f8e805337599e2fe7eb2b84bb5b38e282.tar.bz2 |
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>
Diffstat (limited to 'ArmPkg/Include/Protocol')
-rw-r--r-- | ArmPkg/Include/Protocol/ArmScmiClockProtocol.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ArmPkg/Include/Protocol/ArmScmiClockProtocol.h b/ArmPkg/Include/Protocol/ArmScmiClockProtocol.h index 85b5b8d..cd62f05 100644 --- a/ArmPkg/Include/Protocol/ArmScmiClockProtocol.h +++ b/ArmPkg/Include/Protocol/ArmScmiClockProtocol.h @@ -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 {
|