linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] powerpc/powernv: Remove duplicate header
@ 2019-01-17 16:10 Sabyasachi Gupta
  2019-01-18 10:04 ` Souptick Joarder
  2019-02-08 13:02 ` Michael Ellerman
  0 siblings, 2 replies; 4+ messages in thread
From: Sabyasachi Gupta @ 2019-01-17 16:10 UTC (permalink / raw)
  To: benh, paulus, mpe, npiggin, msuchanek, haren, oohall, bsingharora
  Cc: brajeswar.linux, linuxppc-dev, jrdr.linux, linux-kernel

Remove linux/printk.h which is included more than once.

Signed-off-by: Sabyasachi Gupta <sabyasachi.linux@gmail.com>
---
 arch/powerpc/platforms/powernv/opal.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/powerpc/platforms/powernv/opal.c b/arch/powerpc/platforms/powernv/opal.c
index beed86f..802de0d 100644
--- a/arch/powerpc/platforms/powernv/opal.c
+++ b/arch/powerpc/platforms/powernv/opal.c
@@ -26,7 +26,6 @@
 #include <linux/memblock.h>
 #include <linux/kthread.h>
 #include <linux/freezer.h>
-#include <linux/printk.h>
 #include <linux/kmsg_dump.h>
 #include <linux/console.h>
 #include <linux/sched/debug.h>
-- 
2.7.4


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

* Re: [PATCH] powerpc/powernv: Remove duplicate header
  2019-01-17 16:10 [PATCH] powerpc/powernv: Remove duplicate header Sabyasachi Gupta
@ 2019-01-18 10:04 ` Souptick Joarder
  2019-01-30  2:37   ` Sabyasachi Gupta
  2019-02-08 13:02 ` Michael Ellerman
  1 sibling, 1 reply; 4+ messages in thread
From: Souptick Joarder @ 2019-01-18 10:04 UTC (permalink / raw)
  To: Sabyasachi Gupta
  Cc: Brajeswar Ghosh, linux-kernel, npiggin, paulus, oohall,
	msuchanek, linuxppc-dev, haren

On Thu, Jan 17, 2019 at 9:40 PM Sabyasachi Gupta
<sabyasachi.linux@gmail.com> wrote:
>
> Remove linux/printk.h which is included more than once.
>
> Signed-off-by: Sabyasachi Gupta <sabyasachi.linux@gmail.com>

Acked-by: Souptick Joarder <jrdr.linux@gmail.com>

> ---
>  arch/powerpc/platforms/powernv/opal.c | 1 -
>  1 file changed, 1 deletion(-)
>
> diff --git a/arch/powerpc/platforms/powernv/opal.c b/arch/powerpc/platforms/powernv/opal.c
> index beed86f..802de0d 100644
> --- a/arch/powerpc/platforms/powernv/opal.c
> +++ b/arch/powerpc/platforms/powernv/opal.c
> @@ -26,7 +26,6 @@
>  #include <linux/memblock.h>
>  #include <linux/kthread.h>
>  #include <linux/freezer.h>
> -#include <linux/printk.h>
>  #include <linux/kmsg_dump.h>
>  #include <linux/console.h>
>  #include <linux/sched/debug.h>
> --
> 2.7.4
>

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

* Re: [PATCH] powerpc/powernv: Remove duplicate header
  2019-01-18 10:04 ` Souptick Joarder
@ 2019-01-30  2:37   ` Sabyasachi Gupta
  0 siblings, 0 replies; 4+ messages in thread
From: Sabyasachi Gupta @ 2019-01-30  2:37 UTC (permalink / raw)
  To: Souptick Joarder
  Cc: Brajeswar Ghosh, linux-kernel, npiggin, paulus, Oliver,
	msuchanek, linuxppc-dev, haren

On Fri, Jan 18, 2019 at 3:34 PM Souptick Joarder <jrdr.linux@gmail.com> wrote:
>
> On Thu, Jan 17, 2019 at 9:40 PM Sabyasachi Gupta
> <sabyasachi.linux@gmail.com> wrote:
> >
> > Remove linux/printk.h which is included more than once.
> >
> > Signed-off-by: Sabyasachi Gupta <sabyasachi.linux@gmail.com>
>
> Acked-by: Souptick Joarder <jrdr.linux@gmail.com>
>
If no further comment, can we get this patch in queue for 5.1 ?
> > ---
> >  arch/powerpc/platforms/powernv/opal.c | 1 -
> >  1 file changed, 1 deletion(-)
> >
> > diff --git a/arch/powerpc/platforms/powernv/opal.c b/arch/powerpc/platforms/powernv/opal.c
> > index beed86f..802de0d 100644
> > --- a/arch/powerpc/platforms/powernv/opal.c
> > +++ b/arch/powerpc/platforms/powernv/opal.c
> > @@ -26,7 +26,6 @@
> >  #include <linux/memblock.h>
> >  #include <linux/kthread.h>
> >  #include <linux/freezer.h>
> > -#include <linux/printk.h>
> >  #include <linux/kmsg_dump.h>
> >  #include <linux/console.h>
> >  #include <linux/sched/debug.h>
> > --
> > 2.7.4
> >

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

* Re: powerpc/powernv: Remove duplicate header
  2019-01-17 16:10 [PATCH] powerpc/powernv: Remove duplicate header Sabyasachi Gupta
  2019-01-18 10:04 ` Souptick Joarder
@ 2019-02-08 13:02 ` Michael Ellerman
  1 sibling, 0 replies; 4+ messages in thread
From: Michael Ellerman @ 2019-02-08 13:02 UTC (permalink / raw)
  To: Sabyasachi Gupta, benh, paulus, npiggin, msuchanek, haren,
	oohall, bsingharora
  Cc: linux-kernel, linuxppc-dev, jrdr.linux, brajeswar.linux

On Thu, 2019-01-17 at 16:10:33 UTC, Sabyasachi Gupta wrote:
> Remove linux/printk.h which is included more than once.
> 
> Signed-off-by: Sabyasachi Gupta <sabyasachi.linux@gmail.com>
> Acked-by: Souptick Joarder <jrdr.linux@gmail.com>

Applied to powerpc next, thanks.

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

cheers

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

end of thread, other threads:[~2019-02-08 13:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-17 16:10 [PATCH] powerpc/powernv: Remove duplicate header Sabyasachi Gupta
2019-01-18 10:04 ` Souptick Joarder
2019-01-30  2:37   ` Sabyasachi Gupta
2019-02-08 13:02 ` 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).