Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cf9768d7 authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by Ingo Molnar
Browse files

x86: apic - unify xapic_icr_read



Signed-off-by: default avatarCyrill Gorcunov <gorcunov@gmail.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 9c803869
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -174,7 +174,7 @@ u64 xapic_icr_read(void)
	icr2 = apic_read(APIC_ICR2);
	icr1 = apic_read(APIC_ICR);

	return (icr1 | ((u64)icr2 << 32));
	return icr1 | ((u64)icr2 << 32);
}

static struct apic_ops xapic_ops = {