linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ocxl/afu_irq: Don't include <asm/pnv-ocxl.h>
@ 2018-12-10 15:13 Greg Kurz
  2018-12-10 15:56 ` Frederic Barrat
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Greg Kurz @ 2018-12-10 15:13 UTC (permalink / raw)
  To: linuxppc-dev
  Cc: Christophe Lombard, Vaibhav Jain, stable, Frederic Barrat,
	Andrew Donnellan

The AFU irq code doesn't need to reach out to the platform.

Signed-off-by: Greg Kurz <groug@kaod.org>
---
 drivers/misc/ocxl/afu_irq.c |    1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/misc/ocxl/afu_irq.c b/drivers/misc/ocxl/afu_irq.c
index e70cfa24577f..11ab996657a2 100644
--- a/drivers/misc/ocxl/afu_irq.c
+++ b/drivers/misc/ocxl/afu_irq.c
@@ -2,7 +2,6 @@
 // Copyright 2017 IBM Corp.
 #include <linux/interrupt.h>
 #include <linux/eventfd.h>
-#include <asm/pnv-ocxl.h>
 #include "ocxl_internal.h"
 #include "trace.h"
 


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

* Re: [PATCH] ocxl/afu_irq: Don't include <asm/pnv-ocxl.h>
  2018-12-10 15:13 [PATCH] ocxl/afu_irq: Don't include <asm/pnv-ocxl.h> Greg Kurz
@ 2018-12-10 15:56 ` Frederic Barrat
  2018-12-11  0:09 ` Andrew Donnellan
  2018-12-22  9:54 ` Michael Ellerman
  2 siblings, 0 replies; 5+ messages in thread
From: Frederic Barrat @ 2018-12-10 15:56 UTC (permalink / raw)
  To: Greg Kurz, linuxppc-dev
  Cc: Christophe Lombard, Vaibhav Jain, stable, Frederic Barrat,
	Andrew Donnellan



Le 10/12/2018 à 16:13, Greg Kurz a écrit :
> The AFU irq code doesn't need to reach out to the platform.
> 
> Signed-off-by: Greg Kurz <groug@kaod.org>
> ---

Acked-by: Frederic Barrat <fbarrat@linux.ibm.com>



>   drivers/misc/ocxl/afu_irq.c |    1 -
>   1 file changed, 1 deletion(-)
> 
> diff --git a/drivers/misc/ocxl/afu_irq.c b/drivers/misc/ocxl/afu_irq.c
> index e70cfa24577f..11ab996657a2 100644
> --- a/drivers/misc/ocxl/afu_irq.c
> +++ b/drivers/misc/ocxl/afu_irq.c
> @@ -2,7 +2,6 @@
>   // Copyright 2017 IBM Corp.
>   #include <linux/interrupt.h>
>   #include <linux/eventfd.h>
> -#include <asm/pnv-ocxl.h>
>   #include "ocxl_internal.h"
>   #include "trace.h"
> 
> 


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

* Re: [PATCH] ocxl/afu_irq: Don't include <asm/pnv-ocxl.h>
  2018-12-10 15:13 [PATCH] ocxl/afu_irq: Don't include <asm/pnv-ocxl.h> Greg Kurz
  2018-12-10 15:56 ` Frederic Barrat
@ 2018-12-11  0:09 ` Andrew Donnellan
  2018-12-20 14:51   ` Greg Kurz
  2018-12-22  9:54 ` Michael Ellerman
  2 siblings, 1 reply; 5+ messages in thread
From: Andrew Donnellan @ 2018-12-11  0:09 UTC (permalink / raw)
  To: Greg Kurz, linuxppc-dev
  Cc: stable, Christophe Lombard, Frederic Barrat, Vaibhav Jain

Acked-by: Andrew Donnellan <andrew.donnellan@au1.ibm.com>

On 11/12/18 2:13 am, Greg Kurz wrote:
> The AFU irq code doesn't need to reach out to the platform.
> 
> Signed-off-by: Greg Kurz <groug@kaod.org>
> ---
>   drivers/misc/ocxl/afu_irq.c |    1 -
>   1 file changed, 1 deletion(-)
> 
> diff --git a/drivers/misc/ocxl/afu_irq.c b/drivers/misc/ocxl/afu_irq.c
> index e70cfa24577f..11ab996657a2 100644
> --- a/drivers/misc/ocxl/afu_irq.c
> +++ b/drivers/misc/ocxl/afu_irq.c
> @@ -2,7 +2,6 @@
>   // Copyright 2017 IBM Corp.
>   #include <linux/interrupt.h>
>   #include <linux/eventfd.h>
> -#include <asm/pnv-ocxl.h>
>   #include "ocxl_internal.h"
>   #include "trace.h"
>   
> 

-- 
Andrew Donnellan              OzLabs, ADL Canberra
andrew.donnellan@au1.ibm.com  IBM Australia Limited


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

* Re: [PATCH] ocxl/afu_irq: Don't include <asm/pnv-ocxl.h>
  2018-12-11  0:09 ` Andrew Donnellan
@ 2018-12-20 14:51   ` Greg Kurz
  0 siblings, 0 replies; 5+ messages in thread
From: Greg Kurz @ 2018-12-20 14:51 UTC (permalink / raw)
  To: Michael Ellerman
  Cc: Christophe Lombard, Vaibhav Jain, Frederic Barrat, stable,
	Andrew Donnellan, linuxppc-dev

On Tue, 11 Dec 2018 11:09:39 +1100
Andrew Donnellan <andrew.donnellan@au1.ibm.com> wrote:

> Acked-by: Andrew Donnellan <andrew.donnellan@au1.ibm.com>
> 

Friendly ping before Xmas break :)

> On 11/12/18 2:13 am, Greg Kurz wrote:
> > The AFU irq code doesn't need to reach out to the platform.
> > 
> > Signed-off-by: Greg Kurz <groug@kaod.org>
> > ---
> >   drivers/misc/ocxl/afu_irq.c |    1 -
> >   1 file changed, 1 deletion(-)
> > 
> > diff --git a/drivers/misc/ocxl/afu_irq.c b/drivers/misc/ocxl/afu_irq.c
> > index e70cfa24577f..11ab996657a2 100644
> > --- a/drivers/misc/ocxl/afu_irq.c
> > +++ b/drivers/misc/ocxl/afu_irq.c
> > @@ -2,7 +2,6 @@
> >   // Copyright 2017 IBM Corp.
> >   #include <linux/interrupt.h>
> >   #include <linux/eventfd.h>
> > -#include <asm/pnv-ocxl.h>
> >   #include "ocxl_internal.h"
> >   #include "trace.h"
> >   
> >   
> 

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

* Re: ocxl/afu_irq: Don't include <asm/pnv-ocxl.h>
  2018-12-10 15:13 [PATCH] ocxl/afu_irq: Don't include <asm/pnv-ocxl.h> Greg Kurz
  2018-12-10 15:56 ` Frederic Barrat
  2018-12-11  0:09 ` Andrew Donnellan
@ 2018-12-22  9:54 ` Michael Ellerman
  2 siblings, 0 replies; 5+ messages in thread
From: Michael Ellerman @ 2018-12-22  9:54 UTC (permalink / raw)
  To: Greg Kurz, linuxppc-dev
  Cc: Andrew Donnellan, Frederic Barrat, Christophe Lombard, stable,
	Vaibhav Jain

On Mon, 2018-12-10 at 15:13:38 UTC, Greg Kurz wrote:
> The AFU irq code doesn't need to reach out to the platform.
> 
> Signed-off-by: Greg Kurz <groug@kaod.org>
> Acked-by: Andrew Donnellan <andrew.donnellan@au1.ibm.com>

Applied to powerpc next, thanks.

https://git.kernel.org/powerpc/c/d1f75a96842b265ca2a89b7ed477a5

cheers

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

end of thread, other threads:[~2018-12-22 10:20 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-10 15:13 [PATCH] ocxl/afu_irq: Don't include <asm/pnv-ocxl.h> Greg Kurz
2018-12-10 15:56 ` Frederic Barrat
2018-12-11  0:09 ` Andrew Donnellan
2018-12-20 14:51   ` Greg Kurz
2018-12-22  9:54 ` Michael Ellerman

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