public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] genirq/debugfs: Fix a typo of irq debugfs
@ 2023-09-27  2:29 liming.wu
  2023-09-28  9:43 ` Thomas Gleixner
  0 siblings, 1 reply; 4+ messages in thread
From: liming.wu @ 2023-09-27  2:29 UTC (permalink / raw)
  To: tglx, linux-kernel; +Cc: Liming Wu

From: Liming Wu <liming.wu@jaguarmicro.com>

Correct the spelling of effective.

Signed-off-by: Liming Wu <liming.wu@jaguarmicro.com>
---
 kernel/irq/debugfs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/irq/debugfs.c b/kernel/irq/debugfs.c
index 5971a66be034..f7235285cc41 100644
--- a/kernel/irq/debugfs.c
+++ b/kernel/irq/debugfs.c
@@ -36,7 +36,7 @@ static void irq_debug_show_masks(struct seq_file *m, struct irq_desc *desc)
 	seq_printf(m, "affinity: %*pbl\n", cpumask_pr_args(msk));
 #ifdef CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK
 	msk = irq_data_get_effective_affinity_mask(data);
-	seq_printf(m, "effectiv: %*pbl\n", cpumask_pr_args(msk));
+	seq_printf(m, "effective: %*pbl\n", cpumask_pr_args(msk));
 #endif
 #ifdef CONFIG_GENERIC_PENDING_IRQ
 	msk = desc->pending_mask;
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-09-28 10:12 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-27  2:29 [PATCH] genirq/debugfs: Fix a typo of irq debugfs liming.wu
2023-09-28  9:43 ` Thomas Gleixner
2023-09-28  9:48   ` Andreas Herrmann
2023-09-28 10:13     ` Andreas Herrmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox