diff options
author | Yinghai Lu <yhlu.kernel@gmail.com> | 2008-08-19 23:50:22 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-10-16 10:52:52 -0400 |
commit | 6d50bc26836e16a9589e0b128d527c29e30d722a (patch) | |
tree | 8fd02d634b4cdf618e0328813b33c3a357015547 /fs/proc/proc_misc.c | |
parent | e420dfb40c453a9760b86c7f338052bdb4dfa755 (diff) |
x86: use 28 bits irq NR for pci msi/msix and ht
also print out irq no in /proc/interrups and /proc/stat in hex, so could
tell bus/dev/func.
Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'fs/proc/proc_misc.c')
-rw-r--r-- | fs/proc/proc_misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/proc/proc_misc.c b/fs/proc/proc_misc.c index 72dd739a7f8a..d68c3592fe4a 100644 --- a/fs/proc/proc_misc.c +++ b/fs/proc/proc_misc.c | |||
@@ -589,7 +589,7 @@ static int show_stat(struct seq_file *p, void *v) | |||
589 | } | 589 | } |
590 | 590 | ||
591 | #ifdef CONFIG_HAVE_SPARSE_IRQ | 591 | #ifdef CONFIG_HAVE_SPARSE_IRQ |
592 | seq_printf(p, " %u:%u", j, per_irq_sum); | 592 | seq_printf(p, " %#x:%u", j, per_irq_sum); |
593 | #else | 593 | #else |
594 | seq_printf(p, " %u", per_irq_sum); | 594 | seq_printf(p, " %u", per_irq_sum); |
595 | #endif | 595 | #endif |