summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSylvain 'ythier' Hitier <sylvain.hitier@gmail.com>2017-07-02 15:21:56 +0200
committerLinus Torvalds <torvalds@linux-foundation.org>2017-07-02 15:37:23 -0700
commit401e000ab90d7b81d8ea0735e3ff909548754876 (patch)
treebc7eae657403c34bd4b13c84d769cc7e650745c7
parent79c496816963aa0561868b43c2c950dfeb282639 (diff)
moduleparam: fix doc: hwparam_irq configures an IRQ
Signed-off-by: Sylvain 'ythier' Hitier <sylvain.hitier@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--include/linux/moduleparam.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/moduleparam.h b/include/linux/moduleparam.h
index 6be1949ebcdf..1ee7b30dafec 100644
--- a/include/linux/moduleparam.h
+++ b/include/linux/moduleparam.h
@@ -457,7 +457,7 @@ enum hwparam_type {
hwparam_ioport, /* Module parameter configures an I/O port */
hwparam_iomem, /* Module parameter configures an I/O mem address */
hwparam_ioport_or_iomem, /* Module parameter could be either, depending on other option */
- hwparam_irq, /* Module parameter configures an I/O port */
+ hwparam_irq, /* Module parameter configures an IRQ */
hwparam_dma, /* Module parameter configures a DMA channel */
hwparam_dma_addr, /* Module parameter configures a DMA buffer address */
hwparam_other, /* Module parameter configures some other value */