diff options
author | Andi Kleen <ak@suse.de> | 2006-09-26 04:52:30 -0400 |
---|---|---|
committer | Andi Kleen <andi@basil.nowhere.org> | 2006-09-26 04:52:30 -0400 |
commit | c1a58b42b428e717afbbb298356e041cea54ad17 (patch) | |
tree | f437214b94cb406fb95eddc150a7895f968292bc /arch/x86_64 | |
parent | a8fcf1a24a16e1c735c795d99773b5dcefb71518 (diff) |
[PATCH] i386/x86-64: Remove obsolete sanity check in mptable parsing
It apparently has never triggered in many years.
Signed-off-by: Andi Kleen <ak@suse.de>
Diffstat (limited to 'arch/x86_64')
-rw-r--r-- | arch/x86_64/kernel/mpparse.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/arch/x86_64/kernel/mpparse.c b/arch/x86_64/kernel/mpparse.c index 022624503552..c12acc3b5552 100644 --- a/arch/x86_64/kernel/mpparse.c +++ b/arch/x86_64/kernel/mpparse.c | |||
@@ -223,19 +223,6 @@ static void __init MP_lintsrc_info (struct mpc_config_lintsrc *m) | |||
223 | m->mpc_irqtype, m->mpc_irqflag & 3, | 223 | m->mpc_irqtype, m->mpc_irqflag & 3, |
224 | (m->mpc_irqflag >> 2) &3, m->mpc_srcbusid, | 224 | (m->mpc_irqflag >> 2) &3, m->mpc_srcbusid, |
225 | m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint); | 225 | m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint); |
226 | /* | ||
227 | * Well it seems all SMP boards in existence | ||
228 | * use ExtINT/LVT1 == LINT0 and | ||
229 | * NMI/LVT2 == LINT1 - the following check | ||
230 | * will show us if this assumptions is false. | ||
231 | * Until then we do not have to add baggage. | ||
232 | */ | ||
233 | if ((m->mpc_irqtype == mp_ExtINT) && | ||
234 | (m->mpc_destapiclint != 0)) | ||
235 | BUG(); | ||
236 | if ((m->mpc_irqtype == mp_NMI) && | ||
237 | (m->mpc_destapiclint != 1)) | ||
238 | BUG(); | ||
239 | } | 226 | } |
240 | 227 | ||
241 | /* | 228 | /* |