ArmPkg: CodeQL Fixes.

Makes changes to comply with alerts raised by CodeQL.

The issues here fall into the following category:

1. unsigned-comparison-zero

Signed-off-by: Raymond Diaz <raymonddiaz@microsoft.com>
This commit is contained in:
kuqin12 2024-08-01 13:48:44 -07:00 committed by mergify[bot]
parent a232e0cd2f
commit d44b82270b
2 changed files with 8 additions and 8 deletions

View File

@ -228,7 +228,7 @@ ArmGicSetInterruptPriority (
IN UINTN GicDistributorBase,
IN UINTN GicRedistributorBase,
IN UINTN Source,
IN UINTN Priority
IN UINT32 Priority
)
{
UINT32 RegOffset;

View File

@ -213,7 +213,7 @@ ArmGicSetInterruptPriority (
IN UINTN GicDistributorBase,
IN UINTN GicRedistributorBase,
IN UINTN Source,
IN UINTN Priority
IN UINT32 Priority
);
VOID