aboutsummaryrefslogtreecommitdiff
path: root/kernel/irq
diff options
context:
space:
mode:
authorYinghai Lu <yhlu.kernel@gmail.com>2008-09-19 00:12:26 -0700
committerIngo Molnar <mingo@elte.hu>2008-10-16 16:53:11 +0200
commit9d98598d2fc286c8dbcd0b681168639528428db0 (patch)
tree4fecfe8ec04bd71e52af1a822aba0bd187e60c63 /kernel/irq
parente00585bb7fc3d0b601181b765a254df7ff4ea59b (diff)
sparseirq: remove some debug print out
Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com> Cc: Yinghai Lu <yhlu.kernel@gmail.com> Cc: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/irq')
-rw-r--r--kernel/irq/handle.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/kernel/irq/handle.c b/kernel/irq/handle.c
index eae69373a9c..710db0ec97e 100644
--- a/kernel/irq/handle.c
+++ b/kernel/irq/handle.c
@@ -238,24 +238,6 @@ struct irq_desc *irq_to_desc_alloc(unsigned int irq)
spin_unlock_irqrestore(&sparse_irq_lock, flags);
- printk(KERN_DEBUG "found new irq_desc for irq %d\n", desc->irq);
-#ifdef CONFIG_HAVE_SPARSE_IRQ_DEBUG
- {
- /* dump the results */
- struct irq_desc *desc;
- unsigned long phys;
- unsigned long bytes = sizeof(struct irq_desc);
- unsigned int irqx;
-
- printk(KERN_DEBUG "=========================== %d\n", irq);
- printk(KERN_DEBUG "irq_desc dump after get that for %d\n", irq);
- for_each_irq_desc(irqx, desc) {
- phys = __pa(desc);
- printk(KERN_DEBUG "irq_desc %d ==> [%#lx - %#lx]\n", irqx, phys, phys + bytes);
- }
- printk(KERN_DEBUG "===========================\n");
- }
-#endif
return desc;
}
#else