linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] irqdomain: Fix function documentation of __irq_domain_alloc_fwnode
@ 2020-03-03  1:48 luanshi
  2020-03-03  8:10 ` [tip: irq/core] irqdomain: Fix function documentation of __irq_domain_alloc_fwnode() tip-bot2 for luanshi
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: luanshi @ 2020-03-03  1:48 UTC (permalink / raw)
  To: Marc Zyngier, Thomas Gleixner; +Cc: linux-kernel, luanshi

The function got renamed at some point, but the kernel-doc was not
updated.

Signed-off-by: luanshi <zhangliguang@linux.alibaba.com>
---
 kernel/irq/irqdomain.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kernel/irq/irqdomain.c b/kernel/irq/irqdomain.c
index 7527e5e..fdfc213 100644
--- a/kernel/irq/irqdomain.c
+++ b/kernel/irq/irqdomain.c
@@ -46,11 +46,11 @@ static inline void debugfs_remove_domain_dir(struct irq_domain *d) { }
 EXPORT_SYMBOL_GPL(irqchip_fwnode_ops);
 
 /**
- * irq_domain_alloc_fwnode - Allocate a fwnode_handle suitable for
+ * __irq_domain_alloc_fwnode - Allocate a fwnode_handle suitable for
  *                           identifying an irq domain
  * @type:	Type of irqchip_fwnode. See linux/irqdomain.h
- * @name:	Optional user provided domain name
  * @id:		Optional user provided id if name != NULL
+ * @name:	Optional user provided domain name
  * @pa:		Optional user-provided physical address
  *
  * Allocate a struct irqchip_fwid, and return a poiner to the embedded
-- 
1.8.3.1


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

* [tip: irq/core] irqdomain: Fix function documentation of __irq_domain_alloc_fwnode()
  2020-03-03  1:48 [PATCH] irqdomain: Fix function documentation of __irq_domain_alloc_fwnode luanshi
@ 2020-03-03  8:10 ` tip-bot2 for luanshi
  2020-03-08 10:14 ` tip-bot2 for luanshi
  2020-03-08 13:56 ` [PATCH] irqdomain: Fix function documentation of __irq_domain_alloc_fwnode Marc Zyngier
  2 siblings, 0 replies; 7+ messages in thread
From: tip-bot2 for luanshi @ 2020-03-03  8:10 UTC (permalink / raw)
  To: linux-tip-commits; +Cc: luanshi, Thomas Gleixner, x86, LKML

The following commit has been merged into the irq/core branch of tip:

Commit-ID:     30073b2c0bcad41f1b0d01068e07fd81b812c916
Gitweb:        https://git.kernel.org/tip/30073b2c0bcad41f1b0d01068e07fd81b812c916
Author:        luanshi <zhangliguang@linux.alibaba.com>
AuthorDate:    Tue, 03 Mar 2020 09:48:45 +08:00
Committer:     Thomas Gleixner <tglx@linutronix.de>
CommitterDate: Tue, 03 Mar 2020 09:06:25 +01:00

irqdomain: Fix function documentation of __irq_domain_alloc_fwnode()

The function got renamed at some point, but the kernel-doc was not updated.

Signed-off-by: luanshi <zhangliguang@linux.alibaba.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lkml.kernel.org/r/1583200125-58806-1-git-send-email-zhangliguang@linux.alibaba.com

---
 kernel/irq/irqdomain.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kernel/irq/irqdomain.c b/kernel/irq/irqdomain.c
index 7527e5e..fdfc213 100644
--- a/kernel/irq/irqdomain.c
+++ b/kernel/irq/irqdomain.c
@@ -46,11 +46,11 @@ const struct fwnode_operations irqchip_fwnode_ops;
 EXPORT_SYMBOL_GPL(irqchip_fwnode_ops);
 
 /**
- * irq_domain_alloc_fwnode - Allocate a fwnode_handle suitable for
+ * __irq_domain_alloc_fwnode - Allocate a fwnode_handle suitable for
  *                           identifying an irq domain
  * @type:	Type of irqchip_fwnode. See linux/irqdomain.h
- * @name:	Optional user provided domain name
  * @id:		Optional user provided id if name != NULL
+ * @name:	Optional user provided domain name
  * @pa:		Optional user-provided physical address
  *
  * Allocate a struct irqchip_fwid, and return a poiner to the embedded

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

* [tip: irq/core] irqdomain: Fix function documentation of __irq_domain_alloc_fwnode()
  2020-03-03  1:48 [PATCH] irqdomain: Fix function documentation of __irq_domain_alloc_fwnode luanshi
  2020-03-03  8:10 ` [tip: irq/core] irqdomain: Fix function documentation of __irq_domain_alloc_fwnode() tip-bot2 for luanshi
@ 2020-03-08 10:14 ` tip-bot2 for luanshi
  2020-03-08 13:56 ` [PATCH] irqdomain: Fix function documentation of __irq_domain_alloc_fwnode Marc Zyngier
  2 siblings, 0 replies; 7+ messages in thread
From: tip-bot2 for luanshi @ 2020-03-08 10:14 UTC (permalink / raw)
  To: linux-tip-commits; +Cc: luanshi, Thomas Gleixner, x86, LKML

The following commit has been merged into the irq/core branch of tip:

Commit-ID:     b513df6780ec0265f6c6d8d618d43bd55fd64691
Gitweb:        https://git.kernel.org/tip/b513df6780ec0265f6c6d8d618d43bd55fd64691
Author:        luanshi <zhangliguang@linux.alibaba.com>
AuthorDate:    Tue, 03 Mar 2020 09:48:45 +08:00
Committer:     Thomas Gleixner <tglx@linutronix.de>
CommitterDate: Sun, 08 Mar 2020 11:02:24 +01:00

irqdomain: Fix function documentation of __irq_domain_alloc_fwnode()

The function got renamed at some point, but the kernel-doc was not updated.

Signed-off-by: luanshi <zhangliguang@linux.alibaba.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lkml.kernel.org/r/1583200125-58806-1-git-send-email-zhangliguang@linux.alibaba.com

---
 kernel/irq/irqdomain.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kernel/irq/irqdomain.c b/kernel/irq/irqdomain.c
index 7527e5e..fdfc213 100644
--- a/kernel/irq/irqdomain.c
+++ b/kernel/irq/irqdomain.c
@@ -46,11 +46,11 @@ const struct fwnode_operations irqchip_fwnode_ops;
 EXPORT_SYMBOL_GPL(irqchip_fwnode_ops);
 
 /**
- * irq_domain_alloc_fwnode - Allocate a fwnode_handle suitable for
+ * __irq_domain_alloc_fwnode - Allocate a fwnode_handle suitable for
  *                           identifying an irq domain
  * @type:	Type of irqchip_fwnode. See linux/irqdomain.h
- * @name:	Optional user provided domain name
  * @id:		Optional user provided id if name != NULL
+ * @name:	Optional user provided domain name
  * @pa:		Optional user-provided physical address
  *
  * Allocate a struct irqchip_fwid, and return a poiner to the embedded

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

* Re: [PATCH] irqdomain: Fix function documentation of __irq_domain_alloc_fwnode
  2020-03-03  1:48 [PATCH] irqdomain: Fix function documentation of __irq_domain_alloc_fwnode luanshi
  2020-03-03  8:10 ` [tip: irq/core] irqdomain: Fix function documentation of __irq_domain_alloc_fwnode() tip-bot2 for luanshi
  2020-03-08 10:14 ` tip-bot2 for luanshi
@ 2020-03-08 13:56 ` Marc Zyngier
  2020-03-08 14:40   ` Thomas Gleixner
  2 siblings, 1 reply; 7+ messages in thread
From: Marc Zyngier @ 2020-03-08 13:56 UTC (permalink / raw)
  To: luanshi; +Cc: Thomas Gleixner, linux-kernel

On Tue,  3 Mar 2020 09:48:45 +0800
luanshi <zhangliguang@linux.alibaba.com> wrote:

> The function got renamed at some point, but the kernel-doc was not
> updated.
> 
> Signed-off-by: luanshi <zhangliguang@linux.alibaba.com>

Queued for 5.7.

Thanks,

	M.
-- 
Jazz is not dead. It just smells funny...

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

* Re: [PATCH] irqdomain: Fix function documentation of __irq_domain_alloc_fwnode
  2020-03-08 13:56 ` [PATCH] irqdomain: Fix function documentation of __irq_domain_alloc_fwnode Marc Zyngier
@ 2020-03-08 14:40   ` Thomas Gleixner
  2020-03-08 14:50     ` Marc Zyngier
  0 siblings, 1 reply; 7+ messages in thread
From: Thomas Gleixner @ 2020-03-08 14:40 UTC (permalink / raw)
  To: Marc Zyngier, luanshi; +Cc: linux-kernel

Marc Zyngier <maz@kernel.org> writes:

> On Tue,  3 Mar 2020 09:48:45 +0800
> luanshi <zhangliguang@linux.alibaba.com> wrote:
>
>> The function got renamed at some point, but the kernel-doc was not
>> updated.
>> 
>> Signed-off-by: luanshi <zhangliguang@linux.alibaba.com>
>
> Queued for 5.7.

It's already in tip. You got a tip-bot mail telling you :)

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

* Re: [PATCH] irqdomain: Fix function documentation of __irq_domain_alloc_fwnode
  2020-03-08 14:40   ` Thomas Gleixner
@ 2020-03-08 14:50     ` Marc Zyngier
  2020-03-08 16:33       ` Thomas Gleixner
  0 siblings, 1 reply; 7+ messages in thread
From: Marc Zyngier @ 2020-03-08 14:50 UTC (permalink / raw)
  To: Thomas Gleixner; +Cc: luanshi, linux-kernel

On Sun, 08 Mar 2020 15:40:08 +0100
Thomas Gleixner <tglx@linutronix.de> wrote:

> Marc Zyngier <maz@kernel.org> writes:
> 
> > On Tue,  3 Mar 2020 09:48:45 +0800
> > luanshi <zhangliguang@linux.alibaba.com> wrote:
> >  
> >> The function got renamed at some point, but the kernel-doc was not
> >> updated.
> >> 
> >> Signed-off-by: luanshi <zhangliguang@linux.alibaba.com>  
> >
> > Queued for 5.7.  
> 
> It's already in tip. You got a tip-bot mail telling you :)

That's the problem, I don't. Somehow, tip-bot dropped me from the cc
list (see [1]). How sad! ;-)

	M.

[1] https://lore.kernel.org/lkml/158322302088.28353.3499023675334636073.tip-bot2@tip-bot2/
-- 
Jazz is not dead. It just smells funny...

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

* Re: [PATCH] irqdomain: Fix function documentation of __irq_domain_alloc_fwnode
  2020-03-08 14:50     ` Marc Zyngier
@ 2020-03-08 16:33       ` Thomas Gleixner
  0 siblings, 0 replies; 7+ messages in thread
From: Thomas Gleixner @ 2020-03-08 16:33 UTC (permalink / raw)
  To: Marc Zyngier; +Cc: luanshi, linux-kernel

Marc Zyngier <maz@kernel.org> writes:

> On Sun, 08 Mar 2020 15:40:08 +0100
> Thomas Gleixner <tglx@linutronix.de> wrote:
>
>> Marc Zyngier <maz@kernel.org> writes:
>> 
>> > On Tue,  3 Mar 2020 09:48:45 +0800
>> > luanshi <zhangliguang@linux.alibaba.com> wrote:
>> >  
>> >> The function got renamed at some point, but the kernel-doc was not
>> >> updated.
>> >> 
>> >> Signed-off-by: luanshi <zhangliguang@linux.alibaba.com>  
>> >
>> > Queued for 5.7.  
>> 
>> It's already in tip. You got a tip-bot mail telling you :)
>
> That's the problem, I don't. Somehow, tip-bot dropped me from the cc
> list (see [1]). How sad! ;-)

Tip-bot didn't. I stripped the cc list when applying the patch and
tip-bot only sees the git commit....


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

end of thread, other threads:[~2020-03-08 16:34 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-03  1:48 [PATCH] irqdomain: Fix function documentation of __irq_domain_alloc_fwnode luanshi
2020-03-03  8:10 ` [tip: irq/core] irqdomain: Fix function documentation of __irq_domain_alloc_fwnode() tip-bot2 for luanshi
2020-03-08 10:14 ` tip-bot2 for luanshi
2020-03-08 13:56 ` [PATCH] irqdomain: Fix function documentation of __irq_domain_alloc_fwnode Marc Zyngier
2020-03-08 14:40   ` Thomas Gleixner
2020-03-08 14:50     ` Marc Zyngier
2020-03-08 16:33       ` Thomas Gleixner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).