[PATCH] Use BUILD_BUG_ON in apic.c build sanity checking
Makes code a little shorter. Signed-off-by: Andi Kleen <ak@suse.de>
This commit is contained in:
parent
19f03ffecd
commit
fe7414a288
|
@ -265,8 +265,6 @@ void __init sync_Arb_IDs(void)
|
||||||
| APIC_DM_INIT);
|
| APIC_DM_INIT);
|
||||||
}
|
}
|
||||||
|
|
||||||
extern void __error_in_apic_c (void);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* An initial setup of the virtual wire mode.
|
* An initial setup of the virtual wire mode.
|
||||||
*/
|
*/
|
||||||
|
@ -313,8 +311,7 @@ void __cpuinit setup_local_APIC (void)
|
||||||
|
|
||||||
value = apic_read(APIC_LVR);
|
value = apic_read(APIC_LVR);
|
||||||
|
|
||||||
if ((SPURIOUS_APIC_VECTOR & 0x0f) != 0x0f)
|
BUILD_BUG_ON((SPURIOUS_APIC_VECTOR & 0x0f) != 0x0f);
|
||||||
__error_in_apic_c();
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Double-check whether this APIC is really registered.
|
* Double-check whether this APIC is really registered.
|
||||||
|
|
Loading…
Reference in New Issue