src/soc/intel: Remove unnecessary space after casts
Change-Id: I098104f32dd7c66d7bb79588ef315a242c3889ba Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/69806 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Werner Zeh <werner.zeh@siemens.com> Reviewed-by: Subrata Banik <subratabanik@google.com>
This commit is contained in:
committed by
Martin L Roth
parent
5aa98964fb
commit
9018dee685
@ -84,9 +84,9 @@ int soc_get_uncore_prmmr_base_and_mask(uint64_t *prmrr_base,
|
||||
{
|
||||
msr_t msr;
|
||||
msr = rdmsr(MSR_UNCORE_PRMRR_PHYS_BASE);
|
||||
*prmrr_base = (uint64_t) msr.hi << 32 | msr.lo;
|
||||
*prmrr_base = (uint64_t)msr.hi << 32 | msr.lo;
|
||||
msr = rdmsr(MSR_UNCORE_PRMRR_PHYS_MASK);
|
||||
*prmrr_mask = (uint64_t) msr.hi << 32 | msr.lo;
|
||||
*prmrr_mask = (uint64_t)msr.hi << 32 | msr.lo;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user