From 1ad5182500ed8760076ea359ecd8e28edd5d5f53 Mon Sep 17 00:00:00 2001 From: Pierre Gondois Date: Thu, 30 Sep 2021 08:48:14 +0100 Subject: DynamicTablesPkg: Rename single char input parameter The Ecc tool forbids the usage of one char variable: Ecc error 8007: "There should be no use of short (single character) variable names" To follow this policy, rename this one letter parameter. Reviewed-by: Sami Mujawar Signed-off-by: Pierre Gondois --- DynamicTablesPkg/Include/Library/AcpiHelperLib.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'DynamicTablesPkg/Include') diff --git a/DynamicTablesPkg/Include/Library/AcpiHelperLib.h b/DynamicTablesPkg/Include/Library/AcpiHelperLib.h index 2731a2e4fb..53ab19b1d1 100644 --- a/DynamicTablesPkg/Include/Library/AcpiHelperLib.h +++ b/DynamicTablesPkg/Include/Library/AcpiHelperLib.h @@ -22,15 +22,16 @@ /** Convert a hex number to its ASCII code. - @param [in] x Hex number to convert. - Must be 0 <= x < 16. + @param [in] Hex Hex number to convert. + Must be 0 <= x < 16. @return The ASCII code corresponding to x. + -1 if error. **/ UINT8 EFIAPI AsciiFromHex ( - IN UINT8 x + IN UINT8 Hex ); /** Check if a HID is a valid PNP ID. -- cgit v1.2.3