From: Cheng-Yang Chou Date: Thu, 10 Apr 2025 10:51:43 +0000 (+0800) Subject: genirq: Fix typo in IRQ_NOTCONNECTED comment X-Git-Tag: v6.16-rc1~189^2~56 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0128816c42b52c6ee339718621aeda85855cd3be;p=thirdparty%2Fkernel%2Flinux.git genirq: Fix typo in IRQ_NOTCONNECTED comment Fix a minor typo in the comment for IRQ_NOTCONNECTED: "distingiush" is corrected to "distinguish". Signed-off-by: Cheng-Yang Chou Signed-off-by: Thomas Gleixner Link: https://lore.kernel.org/all/20250410105144.214849-1-yphbchou0911@gmail.com --- diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h index c782a74d2a304..51b6484c04934 100644 --- a/include/linux/interrupt.h +++ b/include/linux/interrupt.h @@ -140,7 +140,7 @@ extern irqreturn_t no_action(int cpl, void *dev_id); /* * If a (PCI) device interrupt is not connected we set dev->irq to * IRQ_NOTCONNECTED. This causes request_irq() to fail with -ENOTCONN, so we - * can distingiush that case from other error returns. + * can distinguish that case from other error returns. * * 0x80000000 is guaranteed to be outside the available range of interrupts * and easy to distinguish from other possible incorrect values.