aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYinghai Lu <yinghai@kernel.org>2012-09-17 22:22:29 -0700
committerYinghai Lu <yinghai@kernel.org>2012-09-17 22:22:29 -0700
commit305db7b1a085b5d7299e8ca349bb24b5b9195156 (patch)
tree6cce61eb025ec958ea206e54171a0fcca4f92a74
parent8a4939ff5c99f4d9ad910d9254ea0dba0a0bbe7f (diff)
downloadlinux-yinghai-305db7b1a085b5d7299e8ca349bb24b5b9195156.tar.gz
x86, irq: Make dmar_msi/hpet_msi irq_chip name consistent
all others are using - instead _. Change those to use - too. Signed-off-by: Yinghai Lu <yinghai@kernel.org> Cc: Suresh Siddha <suresh.b.siddha@intel.com>
-rw-r--r--arch/x86/kernel/apic/io_apic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/apic/io_apic.c b/arch/x86/kernel/apic/io_apic.c
index d5d5a8e00b300c..e7852885f1f46c 100644
--- a/arch/x86/kernel/apic/io_apic.c
+++ b/arch/x86/kernel/apic/io_apic.c
@@ -3272,7 +3272,7 @@ dmar_msi_set_affinity(struct irq_data *data, const struct cpumask *mask,
}
static struct irq_chip dmar_msi_type = {
- .name = "DMAR_MSI",
+ .name = "DMAR-MSI",
.irq_unmask = dmar_msi_unmask,
.irq_mask = dmar_msi_mask,
.irq_ack = ack_apic_edge,
@@ -3320,7 +3320,7 @@ static int hpet_msi_set_affinity(struct irq_data *data,
}
static struct irq_chip hpet_msi_type = {
- .name = "HPET_MSI",
+ .name = "HPET-MSI",
.irq_unmask = hpet_msi_unmask,
.irq_mask = hpet_msi_mask,
.irq_ack = ack_apic_edge,