fix: [ADL/RPL/BTL] Build error with VS2022

Explicit cast added to resolve a build error with VS2022 caused by
bitwise ORing different enum types.

Signed-off-by: Bejean Mosher <bejean.mosher@intel.com>
This commit is contained in:
Bejean Mosher
2025-07-11 12:08:54 -05:00
parent 8927195db2
commit d888673acd
@@ -561,7 +561,7 @@ UpdateCpuNvs (
///
/// Update NVS ASL items.
///
CpuNvs->Cpuid = GetCpuFamily() | GetCpuStepping();
CpuNvs->Cpuid = (UINT32)GetCpuFamily() | (UINT32)GetCpuStepping();
CpuNvs->Revision = 1;
///