[PATCH] genirq/debugfs: fix spelling mistake "effectiv" -> "effective"

From: Colin King
Date: Fri Sep 13 2019 - 04:08:53 EST


From: Colin Ian King <colin.king@xxxxxxxxxxxxx>

There is a spelling mistake in the debugfs output, fix it.

Signed-off-by: Colin Ian King <colin.king@xxxxxxxxxxxxx>
---
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 c1eccd4f6520..55b1b7ce667e 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.20.1