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 <Pierre.Gondois@arm.com> Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>
This commit is contained in:
committed by
mergify[bot]
parent
84262ca3d9
commit
1f93d0c5a3
@ -69,9 +69,9 @@ BaseGetTotalProtocols (
|
|||||||
|
|
||||||
/** Common function which returns vendor details.
|
/** Common function which returns vendor details.
|
||||||
|
|
||||||
@param[in] MessageId SCMI_MESSAGE_ID_BASE_DISCOVER_VENDOR
|
@param[in] MessageId ScmiMessageIdBaseDiscoverVendor
|
||||||
OR
|
OR
|
||||||
SCMI_MESSAGE_ID_BASE_DISCOVER_SUB_VENDOR
|
ScmiMessageIdBaseDiscoverSubVendor
|
||||||
|
|
||||||
@param[out] VendorIdentifier ASCII name of the vendor/subvendor.
|
@param[out] VendorIdentifier ASCII name of the vendor/subvendor.
|
||||||
|
|
||||||
@ -133,7 +133,7 @@ BaseDiscoverVendor (
|
|||||||
)
|
)
|
||||||
{
|
{
|
||||||
return BaseDiscoverVendorDetails (
|
return BaseDiscoverVendorDetails (
|
||||||
SCMI_MESSAGE_ID_BASE_DISCOVER_VENDOR,
|
ScmiMessageIdBaseDiscoverVendor,
|
||||||
VendorIdentifier
|
VendorIdentifier
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -156,7 +156,7 @@ BaseDiscoverSubVendor (
|
|||||||
)
|
)
|
||||||
{
|
{
|
||||||
return BaseDiscoverVendorDetails (
|
return BaseDiscoverVendorDetails (
|
||||||
SCMI_MESSAGE_ID_BASE_DISCOVER_SUB_VENDOR,
|
ScmiMessageIdBaseDiscoverSubVendor,
|
||||||
VendorIdentifier
|
VendorIdentifier
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -184,7 +184,7 @@ BaseDiscoverImplVersion (
|
|||||||
UINT32 PayloadLength;
|
UINT32 PayloadLength;
|
||||||
|
|
||||||
Cmd.ProtocolId = ScmiProtocolIdBase;
|
Cmd.ProtocolId = ScmiProtocolIdBase;
|
||||||
Cmd.MessageId = SCMI_MESSAGE_ID_BASE_DISCOVER_IMPLEMENTATION_VERSION;
|
Cmd.MessageId = ScmiMessageIdBaseDiscoverImplementationVersion;
|
||||||
|
|
||||||
PayloadLength = 0;
|
PayloadLength = 0;
|
||||||
|
|
||||||
@ -251,7 +251,7 @@ BaseDiscoverListProtocols (
|
|||||||
}
|
}
|
||||||
|
|
||||||
Cmd.ProtocolId = ScmiProtocolIdBase;
|
Cmd.ProtocolId = ScmiProtocolIdBase;
|
||||||
Cmd.MessageId = SCMI_MESSAGE_ID_BASE_DISCOVER_LIST_PROTOCOLS;
|
Cmd.MessageId = ScmiMessageIdBaseDiscoverListProtocols;
|
||||||
|
|
||||||
Skip = 0;
|
Skip = 0;
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/** @file
|
/** @file
|
||||||
|
|
||||||
Copyright (c) 2017-2018, Arm Limited. All rights reserved.
|
Copyright (c) 2017-2021, Arm Limited. All rights reserved.<BR>
|
||||||
|
|
||||||
SPDX-License-Identifier: BSD-2-Clause-Patent
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||||
|
|
||||||
@ -158,10 +158,10 @@ typedef struct _SCMI_BASE_PROTOCOL {
|
|||||||
|
|
||||||
// SCMI Message IDs for Base protocol.
|
// SCMI Message IDs for Base protocol.
|
||||||
typedef enum {
|
typedef enum {
|
||||||
SCMI_MESSAGE_ID_BASE_DISCOVER_VENDOR = 0x3,
|
ScmiMessageIdBaseDiscoverVendor = 0x3,
|
||||||
SCMI_MESSAGE_ID_BASE_DISCOVER_SUB_VENDOR = 0x4,
|
ScmiMessageIdBaseDiscoverSubVendor = 0x4,
|
||||||
SCMI_MESSAGE_ID_BASE_DISCOVER_IMPLEMENTATION_VERSION = 0x5,
|
ScmiMessageIdBaseDiscoverImplementationVersion = 0x5,
|
||||||
SCMI_MESSAGE_ID_BASE_DISCOVER_LIST_PROTOCOLS = 0x6
|
ScmiMessageIdBaseDiscoverListProtocols = 0x6
|
||||||
} SCMI_MESSAGE_ID_BASE;
|
} SCMI_MESSAGE_ID_BASE;
|
||||||
|
|
||||||
#endif /* ARM_SCMI_BASE_PROTOCOL_H_ */
|
#endif /* ARM_SCMI_BASE_PROTOCOL_H_ */
|
||||||
|
Reference in New Issue
Block a user