diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-09 10:38:23 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-09 10:38:23 -0700 |
commit | e66dd19092497f566e4dda1664688e28fa667265 (patch) | |
tree | 57876e6c8c2a2b3701b0b5d666593f5428dc3514 /arch/x86/kernel/irq.c | |
parent | c2ea122cd7c4a094be71641f3961796398035513 (diff) | |
parent | f20ab9c38fb85b4dde8b4139788ab9e735a35279 (diff) | |
download | linux-stable-e66dd19092497f566e4dda1664688e28fa667265.tar.gz linux-stable-e66dd19092497f566e4dda1664688e28fa667265.tar.bz2 linux-stable-e66dd19092497f566e4dda1664688e28fa667265.zip |
Merge branch 'x86-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'x86-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
x86: cpu_debug remove execute permission
x86: smarten /proc/interrupts output for new counters
x86: DMI match for the Dell DXP061 as it needs BIOS reboot
x86: make 64 bit to use default_inquire_remote_apic
x86, setup: un-resequence mode setting for VGA 80x34 and 80x60 modes
x86, intel-iommu: fix X2APIC && !ACPI build failure
Diffstat (limited to 'arch/x86/kernel/irq.c')
-rw-r--r-- | arch/x86/kernel/irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/irq.c b/arch/x86/kernel/irq.c index 3aaf7b9e3a8b..c3fe010d74c8 100644 --- a/arch/x86/kernel/irq.c +++ b/arch/x86/kernel/irq.c @@ -65,7 +65,7 @@ static int show_other_interrupts(struct seq_file *p, int prec) seq_printf(p, " Spurious interrupts\n"); #endif if (generic_interrupt_extension) { - seq_printf(p, "PLT: "); + seq_printf(p, "%*s: ", prec, "PLT"); for_each_online_cpu(j) seq_printf(p, "%10u ", irq_stats(j)->generic_irqs); seq_printf(p, " Platform interrupts\n"); |