From: Jan Beulich Date: Thu, 7 Apr 2022 06:39:03 +0000 (+0200) Subject: EFI: correct indentation in efi_tables() X-Git-Tag: archive/raspbian/4.17.0-1+rpi1^2~33^2~771 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=609b8b0153e9bdb4e15be88a8911c6360e13e268;p=xen.git EFI: correct indentation in efi_tables() Eliminate hard tabs. While there also cast to the intended type. Signed-off-by: Jan Beulich Reviewed-by: Julien Grall --- diff --git a/xen/common/efi/boot.c b/xen/common/efi/boot.c index f827a72e93..ac1b235372 100644 --- a/xen/common/efi/boot.c +++ b/xen/common/efi/boot.c @@ -859,15 +859,15 @@ static void __init efi_tables(void) static EFI_GUID __initdata smbios3_guid = SMBIOS3_TABLE_GUID; if ( match_guid(&acpi2_guid, &efi_ct[i].VendorGuid) ) - efi.acpi20 = (long)efi_ct[i].VendorTable; + efi.acpi20 = (unsigned long)efi_ct[i].VendorTable; if ( match_guid(&acpi_guid, &efi_ct[i].VendorGuid) ) - efi.acpi = (long)efi_ct[i].VendorTable; + efi.acpi = (unsigned long)efi_ct[i].VendorTable; if ( match_guid(&mps_guid, &efi_ct[i].VendorGuid) ) - efi.mps = (long)efi_ct[i].VendorTable; + efi.mps = (unsigned long)efi_ct[i].VendorTable; if ( match_guid(&smbios_guid, &efi_ct[i].VendorGuid) ) - efi.smbios = (long)efi_ct[i].VendorTable; + efi.smbios = (unsigned long)efi_ct[i].VendorTable; if ( match_guid(&smbios3_guid, &efi_ct[i].VendorGuid) ) - efi.smbios3 = (long)efi_ct[i].VendorTable; + efi.smbios3 = (unsigned long)efi_ct[i].VendorTable; } #ifndef CONFIG_ARM /* TODO - disabled until implemented on ARM */