All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] clk: at91: Constify irq_domain_ops
@ 2015-04-27 12:52 Krzysztof Kozlowski
  2015-04-27 13:12 ` Boris Brezillon
  0 siblings, 1 reply; 3+ messages in thread
From: Krzysztof Kozlowski @ 2015-04-27 12:52 UTC (permalink / raw)
  To: Boris Brezillon, Mike Turquette, Stephen Boyd, linux-clk, linux-kernel
  Cc: Krzysztof Kozlowski

The irq_domain_ops are not modified by the driver and the irqdomain core
code accepts pointer to a const data.

Signed-off-by: Krzysztof Kozlowski <k.kozlowski.k@gmail.com>
---
 drivers/clk/at91/pmc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/at91/pmc.c b/drivers/clk/at91/pmc.c
index 3f27d21fb729..39be2be82b0a 100644
--- a/drivers/clk/at91/pmc.c
+++ b/drivers/clk/at91/pmc.c
@@ -153,7 +153,7 @@ static int pmc_irq_domain_xlate(struct irq_domain *d,
 	return 0;
 }
 
-static struct irq_domain_ops pmc_irq_ops = {
+static const struct irq_domain_ops pmc_irq_ops = {
 	.map	= pmc_irq_map,
 	.xlate	= pmc_irq_domain_xlate,
 };
-- 
2.1.0


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

* Re: [PATCH] clk: at91: Constify irq_domain_ops
  2015-04-27 12:52 [PATCH] clk: at91: Constify irq_domain_ops Krzysztof Kozlowski
@ 2015-04-27 13:12 ` Boris Brezillon
  2015-05-01  1:23   ` Stephen Boyd
  0 siblings, 1 reply; 3+ messages in thread
From: Boris Brezillon @ 2015-04-27 13:12 UTC (permalink / raw)
  To: Krzysztof Kozlowski; +Cc: Mike Turquette, Stephen Boyd, linux-clk, linux-kernel

On Mon, 27 Apr 2015 21:52:38 +0900
Krzysztof Kozlowski <k.kozlowski.k@gmail.com> wrote:

> The irq_domain_ops are not modified by the driver and the irqdomain core
> code accepts pointer to a const data.
> 
> Signed-off-by: Krzysztof Kozlowski <k.kozlowski.k@gmail.com>

Acked-by: Boris Brezillon <boris.brezillon@free-electrons.com>

> ---
>  drivers/clk/at91/pmc.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/clk/at91/pmc.c b/drivers/clk/at91/pmc.c
> index 3f27d21fb729..39be2be82b0a 100644
> --- a/drivers/clk/at91/pmc.c
> +++ b/drivers/clk/at91/pmc.c
> @@ -153,7 +153,7 @@ static int pmc_irq_domain_xlate(struct irq_domain *d,
>  	return 0;
>  }
>  
> -static struct irq_domain_ops pmc_irq_ops = {
> +static const struct irq_domain_ops pmc_irq_ops = {
>  	.map	= pmc_irq_map,
>  	.xlate	= pmc_irq_domain_xlate,
>  };



-- 
Boris Brezillon, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

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

* Re: [PATCH] clk: at91: Constify irq_domain_ops
  2015-04-27 13:12 ` Boris Brezillon
@ 2015-05-01  1:23   ` Stephen Boyd
  0 siblings, 0 replies; 3+ messages in thread
From: Stephen Boyd @ 2015-05-01  1:23 UTC (permalink / raw)
  To: Boris Brezillon
  Cc: Krzysztof Kozlowski, Mike Turquette, linux-clk, linux-kernel

On 04/27, Boris Brezillon wrote:
> On Mon, 27 Apr 2015 21:52:38 +0900
> Krzysztof Kozlowski <k.kozlowski.k@gmail.com> wrote:
> 
> > The irq_domain_ops are not modified by the driver and the irqdomain core
> > code accepts pointer to a const data.
> > 
> > Signed-off-by: Krzysztof Kozlowski <k.kozlowski.k@gmail.com>
> 
> Acked-by: Boris Brezillon <boris.brezillon@free-electrons.com>
> 

Thanks. Applied to clk-next.
-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project

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

end of thread, other threads:[~2015-05-01  1:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-27 12:52 [PATCH] clk: at91: Constify irq_domain_ops Krzysztof Kozlowski
2015-04-27 13:12 ` Boris Brezillon
2015-05-01  1:23   ` Stephen Boyd

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.