sb/intel/i82870: Add whitespace around '<<'
Change-Id: Ic8b0e6404a3f90312f7d2d3b6c367b0a1d9ec6e2 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/20460 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
This commit is contained in:
parent
9858796a1b
commit
ccd233b4bc
|
@ -68,9 +68,9 @@ static void p64h2_ioapic_init(device_t dev)
|
|||
apic_id <<= 24; // Convert ID to bitmask
|
||||
|
||||
*pIndexRegister = 0; // Select APIC ID register
|
||||
*pWindowRegister = (*pWindowRegister & ~(0xF<<24)) | apic_id; // Set the ID
|
||||
*pWindowRegister = (*pWindowRegister & ~(0x0f << 24)) | apic_id; // Set the ID
|
||||
|
||||
if ((*pWindowRegister & (0xF<<24)) != apic_id)
|
||||
if ((*pWindowRegister & (0x0f << 24)) != apic_id)
|
||||
die("p64h2_ioapic_init failed");
|
||||
|
||||
*pIndexRegister = 3; // Select Boot Configuration register
|
||||
|
|
Loading…
Reference in New Issue