mirror of https://github.com/acidanthera/audk.git
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:
parent
1f93d0c5a3
commit
bd8efb4f8e
|
@ -123,7 +123,7 @@ ClockGetClockAttributes (
|
||||||
*MessageParams = ClockId;
|
*MessageParams = ClockId;
|
||||||
|
|
||||||
Cmd.ProtocolId = ScmiProtocolIdClock;
|
Cmd.ProtocolId = ScmiProtocolIdClock;
|
||||||
Cmd.MessageId = SCMI_MESSAGE_ID_CLOCK_ATTRIBUTES;
|
Cmd.MessageId = ScmiMessageIdClockAttributes;
|
||||||
|
|
||||||
PayloadLength = sizeof (ClockId);
|
PayloadLength = sizeof (ClockId);
|
||||||
|
|
||||||
|
@ -204,7 +204,7 @@ ClockDescribeRates (
|
||||||
}
|
}
|
||||||
|
|
||||||
Cmd.ProtocolId = ScmiProtocolIdClock;
|
Cmd.ProtocolId = ScmiProtocolIdClock;
|
||||||
Cmd.MessageId = SCMI_MESSAGE_ID_CLOCK_DESCRIBE_RATES;
|
Cmd.MessageId = ScmiMessageIdClockDescribeRates;
|
||||||
|
|
||||||
*MessageParams++ = ClockId;
|
*MessageParams++ = ClockId;
|
||||||
|
|
||||||
|
@ -321,7 +321,7 @@ ClockRateGet (
|
||||||
*MessageParams = ClockId;
|
*MessageParams = ClockId;
|
||||||
|
|
||||||
Cmd.ProtocolId = ScmiProtocolIdClock;
|
Cmd.ProtocolId = ScmiProtocolIdClock;
|
||||||
Cmd.MessageId = SCMI_MESSAGE_ID_CLOCK_RATE_GET;
|
Cmd.MessageId = ScmiMessageIdClockRateGet;
|
||||||
|
|
||||||
PayloadLength = sizeof (ClockId);
|
PayloadLength = sizeof (ClockId);
|
||||||
|
|
||||||
|
@ -375,7 +375,7 @@ ClockRateSet (
|
||||||
ClockRateSetAttributes->Rate.High = (UINT32)(Rate >> 32);
|
ClockRateSetAttributes->Rate.High = (UINT32)(Rate >> 32);
|
||||||
|
|
||||||
Cmd.ProtocolId = ScmiProtocolIdClock;
|
Cmd.ProtocolId = ScmiProtocolIdClock;
|
||||||
Cmd.MessageId = SCMI_MESSAGE_ID_CLOCK_RATE_SET;
|
Cmd.MessageId = ScmiMessageIdClockRateSet;
|
||||||
|
|
||||||
PayloadLength = sizeof (CLOCK_RATE_SET_ATTRIBUTES);
|
PayloadLength = sizeof (CLOCK_RATE_SET_ATTRIBUTES);
|
||||||
|
|
||||||
|
@ -422,7 +422,7 @@ ClockEnable (
|
||||||
ClockConfigSetAttributes->Attributes = Enable ? BIT0 : 0;
|
ClockConfigSetAttributes->Attributes = Enable ? BIT0 : 0;
|
||||||
|
|
||||||
Cmd.ProtocolId = ScmiProtocolIdClock;
|
Cmd.ProtocolId = ScmiProtocolIdClock;
|
||||||
Cmd.MessageId = SCMI_MESSAGE_ID_CLOCK_CONFIG_SET;
|
Cmd.MessageId = ScmiMessageIdClockConfigSet;
|
||||||
|
|
||||||
PayloadLength = sizeof (CLOCK_CONFIG_SET_ATTRIBUTES);
|
PayloadLength = sizeof (CLOCK_CONFIG_SET_ATTRIBUTES);
|
||||||
|
|
||||||
|
|
|
@ -22,11 +22,11 @@ extern EFI_GUID gArmScmiClockProtocolGuid;
|
||||||
|
|
||||||
// Message Type for clock management protocol.
|
// Message Type for clock management protocol.
|
||||||
typedef enum {
|
typedef enum {
|
||||||
SCMI_MESSAGE_ID_CLOCK_ATTRIBUTES = 0x3,
|
ScmiMessageIdClockAttributes = 0x3,
|
||||||
SCMI_MESSAGE_ID_CLOCK_DESCRIBE_RATES = 0x4,
|
ScmiMessageIdClockDescribeRates = 0x4,
|
||||||
SCMI_MESSAGE_ID_CLOCK_RATE_SET = 0x5,
|
ScmiMessageIdClockRateSet = 0x5,
|
||||||
SCMI_MESSAGE_ID_CLOCK_RATE_GET = 0x6,
|
ScmiMessageIdClockRateGet = 0x6,
|
||||||
SCMI_MESSAGE_ID_CLOCK_CONFIG_SET = 0x7
|
ScmiMessageIdClockConfigSet = 0x7
|
||||||
} SCMI_MESSAGE_ID_CLOCK;
|
} SCMI_MESSAGE_ID_CLOCK;
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
|
|
Loading…
Reference in New Issue