linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] genirq: irqchip: document gcflags arg of irq_alloc_domain_generic_chips
@ 2013-06-18 14:08 James Hogan
  2013-06-24 13:19 ` Grant Likely
  2013-06-24 13:40 ` [tip:irq/core] genirq: Irqchip: " tip-bot for James Hogan
  0 siblings, 2 replies; 3+ messages in thread
From: James Hogan @ 2013-06-18 14:08 UTC (permalink / raw)
  To: Thomas Gleixner; +Cc: linux-kernel, James Hogan

Commit 088f40b7b027dad6519712ff224a5798dd62a204 ("genirq: Generic chip:
Add linear irq domain support") missed kerneldoc for the gcflags
argument of irq_alloc_domain_generic_chips(). Add it now.

Signed-off-by: James Hogan <james.hogan@imgtec.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
---
 kernel/irq/generic-chip.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kernel/irq/generic-chip.c b/kernel/irq/generic-chip.c
index 95575d8..a746a8f 100644
--- a/kernel/irq/generic-chip.c
+++ b/kernel/irq/generic-chip.c
@@ -251,12 +251,13 @@ irq_gc_init_mask_cache(struct irq_chip_generic *gc, enum irq_gc_flags flags)
  * @irqs_per_chip:	Number of interrupts each chip handles
  * @num_ct:		Number of irq_chip_type instances associated with this
  * @name:		Name of the irq chip
  * @handler:		Default flow handler associated with these chips
  * @clr:		IRQ_* bits to clear in the mapping function
  * @set:		IRQ_* bits to set in the mapping function
+ * @gcflags:		Generic chip specific setup flags
  */
 int irq_alloc_domain_generic_chips(struct irq_domain *d, int irqs_per_chip,
 				   int num_ct, const char *name,
 				   irq_flow_handler_t handler,
 				   unsigned int clr, unsigned int set,
 				   enum irq_gc_flags gcflags)
-- 
1.8.1.2



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

* Re: [PATCH] genirq: irqchip: document gcflags arg of irq_alloc_domain_generic_chips
  2013-06-18 14:08 [PATCH] genirq: irqchip: document gcflags arg of irq_alloc_domain_generic_chips James Hogan
@ 2013-06-24 13:19 ` Grant Likely
  2013-06-24 13:40 ` [tip:irq/core] genirq: Irqchip: " tip-bot for James Hogan
  1 sibling, 0 replies; 3+ messages in thread
From: Grant Likely @ 2013-06-24 13:19 UTC (permalink / raw)
  To: James Hogan, Thomas Gleixner; +Cc: linux-kernel, James Hogan

On Tue, 18 Jun 2013 15:08:33 +0100, James Hogan <james.hogan@imgtec.com> wrote:
> Commit 088f40b7b027dad6519712ff224a5798dd62a204 ("genirq: Generic chip:
> Add linear irq domain support") missed kerneldoc for the gcflags
> argument of irq_alloc_domain_generic_chips(). Add it now.
> 
> Signed-off-by: James Hogan <james.hogan@imgtec.com>
> Cc: Thomas Gleixner <tglx@linutronix.de>

Acked-by: Grant Likely <grant.likely@secretlab.ca>

> ---
>  kernel/irq/generic-chip.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/kernel/irq/generic-chip.c b/kernel/irq/generic-chip.c
> index 95575d8..a746a8f 100644
> --- a/kernel/irq/generic-chip.c
> +++ b/kernel/irq/generic-chip.c
> @@ -251,12 +251,13 @@ irq_gc_init_mask_cache(struct irq_chip_generic *gc, enum irq_gc_flags flags)
>   * @irqs_per_chip:	Number of interrupts each chip handles
>   * @num_ct:		Number of irq_chip_type instances associated with this
>   * @name:		Name of the irq chip
>   * @handler:		Default flow handler associated with these chips
>   * @clr:		IRQ_* bits to clear in the mapping function
>   * @set:		IRQ_* bits to set in the mapping function
> + * @gcflags:		Generic chip specific setup flags
>   */
>  int irq_alloc_domain_generic_chips(struct irq_domain *d, int irqs_per_chip,
>  				   int num_ct, const char *name,
>  				   irq_flow_handler_t handler,
>  				   unsigned int clr, unsigned int set,
>  				   enum irq_gc_flags gcflags)
> -- 
> 1.8.1.2
> 
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/

-- 
email sent from notmuch.vim plugin

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

* [tip:irq/core] genirq: Irqchip: document gcflags arg of irq_alloc_domain_generic_chips
  2013-06-18 14:08 [PATCH] genirq: irqchip: document gcflags arg of irq_alloc_domain_generic_chips James Hogan
  2013-06-24 13:19 ` Grant Likely
@ 2013-06-24 13:40 ` tip-bot for James Hogan
  1 sibling, 0 replies; 3+ messages in thread
From: tip-bot for James Hogan @ 2013-06-24 13:40 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: linux-kernel, grant.likely, hpa, mingo, james.hogan, tglx

Commit-ID:  6fff8314046276331314ae32cea34c6d11c440d2
Gitweb:     http://git.kernel.org/tip/6fff8314046276331314ae32cea34c6d11c440d2
Author:     James Hogan <james.hogan@imgtec.com>
AuthorDate: Tue, 18 Jun 2013 15:08:33 +0100
Committer:  Thomas Gleixner <tglx@linutronix.de>
CommitDate: Mon, 24 Jun 2013 15:38:12 +0200

genirq: Irqchip: document gcflags arg of irq_alloc_domain_generic_chips

Commit 088f40b7b027dad6519712ff224a5798dd62a204 ("genirq: Generic chip:
Add linear irq domain support") missed kerneldoc for the gcflags
argument of irq_alloc_domain_generic_chips(). Add it now.

Signed-off-by: James Hogan <james.hogan@imgtec.com>
Acked-by: Grant Likely <grant.likely@secretlab.ca>
Link: http://lkml.kernel.org/r/1371564513-4327-1-git-send-email-james.hogan@imgtec.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---
 kernel/irq/generic-chip.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kernel/irq/generic-chip.c b/kernel/irq/generic-chip.c
index 95575d8..a746a8f 100644
--- a/kernel/irq/generic-chip.c
+++ b/kernel/irq/generic-chip.c
@@ -254,6 +254,7 @@ irq_gc_init_mask_cache(struct irq_chip_generic *gc, enum irq_gc_flags flags)
  * @handler:		Default flow handler associated with these chips
  * @clr:		IRQ_* bits to clear in the mapping function
  * @set:		IRQ_* bits to set in the mapping function
+ * @gcflags:		Generic chip specific setup flags
  */
 int irq_alloc_domain_generic_chips(struct irq_domain *d, int irqs_per_chip,
 				   int num_ct, const char *name,

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

end of thread, other threads:[~2013-06-24 13:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-06-18 14:08 [PATCH] genirq: irqchip: document gcflags arg of irq_alloc_domain_generic_chips James Hogan
2013-06-24 13:19 ` Grant Likely
2013-06-24 13:40 ` [tip:irq/core] genirq: Irqchip: " tip-bot for James Hogan

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).