ACK: [PATCH 18/27] acpi: nfit: rename table to nfit_table to avoid name shadowing

ivanhu ivan.hu at canonical.com
Thu Aug 16 09:18:02 UTC 2018



On 08/15/2018 09:11 PM, Colin King wrote:
> From: Colin Ian King <colin.king at canonical.com>
>
> Function scan_nfit_smbios uses the argument table which shadows
> another table in the scope of the source.  Rename table to nfit_table
> to avoid any shadowing and scoping confusion.
>
> Signed-off-by: Colin Ian King <colin.king at canonical.com>
> ---
>  src/acpi/nfit/nfit.c | 14 +++++++-------
>  1 file changed, 7 insertions(+), 7 deletions(-)
>
> diff --git a/src/acpi/nfit/nfit.c b/src/acpi/nfit/nfit.c
> index 53c86c24..d5f23df2 100644
> --- a/src/acpi/nfit/nfit.c
> +++ b/src/acpi/nfit/nfit.c
> @@ -38,7 +38,7 @@ static const uint8_t guid_virtual_device[4][16] = {
>  	{ 0x88, 0x81, 0x01, 0x08, 0xcd, 0x42, 0x48, 0xbb, 0x10, 0x0f, 0x53, 0x87, 0xd5, 0x3d, 0xed, 0x3d },
>  };
>  
> -static fwts_acpi_table_info *table;
> +static fwts_acpi_table_info *nfit_table;
>  
>  static bool check_length(fwts_framework *fw, int actual, int min, const char *name) {
>  	if (actual < min) {
> @@ -96,11 +96,11 @@ static bool scan_nfit_smbios(fwts_framework *fw, int len, uint8_t *table) {
>  
>  static int nfit_init(fwts_framework *fw)
>  {
> -	if (fwts_acpi_find_table(fw, "NFIT", 0, &table) != FWTS_OK) {
> +	if (fwts_acpi_find_table(fw, "NFIT", 0, &nfit_table) != FWTS_OK) {
>  		fwts_log_error(fw, "Cannot read ACPI tables.");
>  		return FWTS_ERROR;
>  	}
> -	if (table == NULL || (table && table->length == 0)) {
> +	if (nfit_table == NULL || (nfit_table && nfit_table->length == 0)) {
>  		fwts_log_error(fw, "ACPI NFIT table does not exist, skipping test");
>  		return FWTS_SKIP;
>  	}
> @@ -112,7 +112,7 @@ static int nfit_init(fwts_framework *fw)
>   */
>  static int nfit_test1(fwts_framework *fw)
>  {
> -	fwts_acpi_table_nfit *nfit = (fwts_acpi_table_nfit*) table->data;
> +	fwts_acpi_table_nfit *nfit = (fwts_acpi_table_nfit*)nfit_table->data;
>  	fwts_acpi_table_nfit_struct_header *entry;
>  	uint32_t offset;
>  	bool passed = true;
> @@ -124,9 +124,9 @@ static int nfit_test1(fwts_framework *fw)
>  	fwts_acpi_reserved_zero_check(fw, "NFIT", "Reserved", nfit->reserved, sizeof(nfit->reserved), &passed);
>  
>  	offset = sizeof(fwts_acpi_table_nfit);
> -	entry = (fwts_acpi_table_nfit_struct_header *) (table->data + offset);
> +	entry = (fwts_acpi_table_nfit_struct_header *)(nfit_table->data + offset);
>  
> -	while (offset < table->length) {
> +	while (offset < nfit_table->length) {
>  		uint64_t reserved_passed = 0;
>  
>  		fwts_log_info_verbatim(fw, "  NFIT Subtable:");
> @@ -506,7 +506,7 @@ static int nfit_test1(fwts_framework *fw)
>  		fwts_acpi_reserved_zero_check(fw, "NFIT", "Reserved", reserved_passed, sizeof(reserved_passed), &passed);
>  		fwts_log_nl(fw);
>  		offset += entry->length;
> -		entry = (fwts_acpi_table_nfit_struct_header *) (table->data + offset);
> +		entry = (fwts_acpi_table_nfit_struct_header *)(nfit_table->data + offset);
>  	}
>  
>  

Acked-by: Ivan Hu <ivan.hu at canonical.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.ubuntu.com/archives/fwts-devel/attachments/20180816/faccba74/attachment-0001.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 473 bytes
Desc: OpenPGP digital signature
URL: <https://lists.ubuntu.com/archives/fwts-devel/attachments/20180816/faccba74/attachment-0001.sig>


More information about the fwts-devel mailing list