From: Simon Glass Date: Tue, 23 Feb 2021 10:35:40 +0000 (-0500) Subject: x86: Fix member check in intel_gnvs X-Git-Tag: baikal/mips/sdk5.9~34^2^2~146^2~2 X-Git-Url: https://git.baikalelectronics.ru/?a=commitdiff_plain;h=39e61e0fe023e4988019155882207797ba8a2e07;p=uboot.git x86: Fix member check in intel_gnvs When CONFIG_CHROMEOS is not enabled this currently does not build. Fix it. Reported-by: Heinrich Schuchardt Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- diff --git a/arch/x86/include/asm/intel_gnvs.h b/arch/x86/include/asm/intel_gnvs.h index 69a20812e5..fc743dc928 100644 --- a/arch/x86/include/asm/intel_gnvs.h +++ b/arch/x86/include/asm/intel_gnvs.h @@ -107,6 +107,10 @@ struct __packed acpi_global_nvs { u8 unused2[0x1000 - 0x100]; /* Pad out to 4096 bytes */ #endif }; +#ifdef CONFIG_CHROMEOS check_member(acpi_global_nvs, chromeos, GNVS_CHROMEOS_ACPI_OFFSET); +#else +check_member(acpi_global_nvs, unused2, GNVS_CHROMEOS_ACPI_OFFSET); +#endif #endif /* _INTEL_GNVS_H_ */