diff options
author | Alexander Nyberg <alexn@telia.com> | 2005-09-12 12:49:24 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-12 13:50:55 -0400 |
commit | 24dead8ac9c8fa78b9bfb45b06080a7018fd2ed3 (patch) | |
tree | 58ea03755072bb315a4c18579bc6db5cd91d4860 | |
parent | f297e4e5e4245a5c3fb36e7f754cde96cdb4bc43 (diff) |
[PATCH] Remove unnecessary BUG_ON in irq.c
Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | arch/x86_64/kernel/irq.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86_64/kernel/irq.c b/arch/x86_64/kernel/irq.c index 849a20aec7ca..d6a04a8320a3 100644 --- a/arch/x86_64/kernel/irq.c +++ b/arch/x86_64/kernel/irq.c | |||
@@ -99,7 +99,6 @@ asmlinkage unsigned int do_IRQ(struct pt_regs *regs) | |||
99 | unsigned irq = regs->orig_rax & 0xff; | 99 | unsigned irq = regs->orig_rax & 0xff; |
100 | 100 | ||
101 | irq_enter(); | 101 | irq_enter(); |
102 | BUG_ON(irq > 256); | ||
103 | 102 | ||
104 | __do_IRQ(irq, regs); | 103 | __do_IRQ(irq, regs); |
105 | irq_exit(); | 104 | irq_exit(); |