diff options
author | Yinghai Lu <yhlu.kernel@gmail.com> | 2008-09-25 14:53:11 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-10-16 10:53:12 -0400 |
commit | c81bba49a13cb3376654d0cc93dc069fd619ed76 (patch) | |
tree | 04d2296c14c7b452fd49bfb042de568fbad88b48 /arch/x86/kernel/hpet.c | |
parent | c1370b49cc4f09de5b447ddf688a3988a297dbfc (diff) |
x86: print out irq nr for msi/ht, v3
v2: fix hpet compiling error
v3: Bjorn want to use dev_printk instead
Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com>
Cc: Bjorn Helgaas <bjorn.helgaas@hp.com>
Cc: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/hpet.c')
-rw-r--r-- | arch/x86/kernel/hpet.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/x86/kernel/hpet.c b/arch/x86/kernel/hpet.c index 422c577ef691..2913913f4a46 100644 --- a/arch/x86/kernel/hpet.c +++ b/arch/x86/kernel/hpet.c | |||
@@ -467,6 +467,9 @@ static int hpet_setup_irq(struct hpet_dev *dev) | |||
467 | irq_set_affinity(dev->irq, cpumask_of_cpu(dev->cpu)); | 467 | irq_set_affinity(dev->irq, cpumask_of_cpu(dev->cpu)); |
468 | enable_irq(dev->irq); | 468 | enable_irq(dev->irq); |
469 | 469 | ||
470 | printk(KERN_DEBUG "hpet: %s irq %d for MSI\n", | ||
471 | dev->name, dev->irq); | ||
472 | |||
470 | return 0; | 473 | return 0; |
471 | } | 474 | } |
472 | 475 | ||