diff options
author | Yi Wang <wang.yi59@zte.com.cn> | 2019-10-19 17:07:27 +0800 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2019-11-05 00:48:26 +0100 |
commit | 0ed9ca25894ef673d0259e4bd312d5fa1b9a6591 (patch) | |
tree | 331a47cb6b175365fe81ac282d63af2408229949 /kernel/irq/irqdomain.c | |
parent | a99d8080aaf358d5d23581244e5da23b35e340b9 (diff) | |
download | linux-0ed9ca25894ef673d0259e4bd312d5fa1b9a6591.tar.gz linux-0ed9ca25894ef673d0259e4bd312d5fa1b9a6591.tar.bz2 linux-0ed9ca25894ef673d0259e4bd312d5fa1b9a6591.zip |
irq/irqdomain: Update __irq_domain_alloc_fwnode() function documentation
A recent commit changed a parameter of __irq_domain_alloc_fwnode(), but
did not update the documentation comment. Fix it up.
Fixes: b977fcf477c1 ("irqdomain/debugfs: Use PAs to generate fwnode names")
Signed-off-by: Yi Wang <wang.yi59@zte.com.cn>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lkml.kernel.org/r/1571476047-29463-1-git-send-email-wang.yi59@zte.com.cn
Diffstat (limited to 'kernel/irq/irqdomain.c')
-rw-r--r-- | kernel/irq/irqdomain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/irq/irqdomain.c b/kernel/irq/irqdomain.c index 132672b74e4b..dd822fd8a7d5 100644 --- a/kernel/irq/irqdomain.c +++ b/kernel/irq/irqdomain.c @@ -51,7 +51,7 @@ EXPORT_SYMBOL_GPL(irqchip_fwnode_ops); * @type: Type of irqchip_fwnode. See linux/irqdomain.h * @name: Optional user provided domain name * @id: Optional user provided id if name != NULL - * @data: Optional user-provided data + * @pa: Optional user-provided physical address * * Allocate a struct irqchip_fwid, and return a poiner to the embedded * fwnode_handle (or NULL on failure). |