summaryrefslogtreecommitdiff
path: root/drivers/irqchip
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert+renesas@glider.be>2025-02-05 15:22:56 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2025-02-21 14:11:16 +0100
commit2be9f3832e846ae0a1cbd7902797bf6ed08d5cf8 (patch)
treef2a93b05371bffb7942650486356306905cdfac2 /drivers/irqchip
parentc914374c55133b65414b1b18526249b68c0f2a17 (diff)
downloadlinux-2be9f3832e846ae0a1cbd7902797bf6ed08d5cf8.tar.gz
linux-2be9f3832e846ae0a1cbd7902797bf6ed08d5cf8.tar.bz2
linux-2be9f3832e846ae0a1cbd7902797bf6ed08d5cf8.zip
genirq: Remove leading space from irq_chip::irq_print_chip() callbacks
[ Upstream commit 29a61a1f40637ae010b828745fb41f60301c3a3d ] The space separator was factored out from the multiple chip name prints, but several irq_chip::irq_print_chip() callbacks still print a leading space. Remove the superfluous double spaces. Fixes: 9d9f204bdf7243bf ("genirq/proc: Add missing space separator back") Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Link: https://lore.kernel.org/all/893f7e9646d8933cd6786d5a1ef3eb076d263768.1738764803.git.geert+renesas@glider.be Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'drivers/irqchip')
-rw-r--r--drivers/irqchip/irq-partition-percpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/irqchip/irq-partition-percpu.c b/drivers/irqchip/irq-partition-percpu.c
index 8e76d2913e6b..4441ffe149ea 100644
--- a/drivers/irqchip/irq-partition-percpu.c
+++ b/drivers/irqchip/irq-partition-percpu.c
@@ -98,7 +98,7 @@ static void partition_irq_print_chip(struct irq_data *d, struct seq_file *p)
struct irq_chip *chip = irq_desc_get_chip(part->chained_desc);
struct irq_data *data = irq_desc_get_irq_data(part->chained_desc);
- seq_printf(p, " %5s-%lu", chip->name, data->hwirq);
+ seq_printf(p, "%5s-%lu", chip->name, data->hwirq);
}
static struct irq_chip partition_irq_chip = {