All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] arch/sh/boards/mach-dreamcast/irq.c: Remove duplicate header
@ 2019-03-11 15:58 ` Sabyasachi Gupta
  0 siblings, 0 replies; 4+ messages in thread
From: Sabyasachi Gupta @ 2019-03-11 15:46 UTC (permalink / raw)
  To: akpm; +Cc: ysato, dalias, linux-sh, linux-kernel, jrdr.linux

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

Signed-off-by: Sabyasachi Gupta <sabyasachi.linux@gmail.com>
---
 arch/sh/boards/mach-dreamcast/irq.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/sh/boards/mach-dreamcast/irq.c b/arch/sh/boards/mach-dreamcast/irq.c
index 2789647..69fa91c 100644
--- a/arch/sh/boards/mach-dreamcast/irq.c
+++ b/arch/sh/boards/mach-dreamcast/irq.c
@@ -10,7 +10,6 @@
  */
 #include <linux/irq.h>
 #include <linux/io.h>
-#include <linux/irq.h>
 #include <linux/export.h>
 #include <linux/err.h>
 #include <mach/sysasic.h>
-- 
2.7.4


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

* [PATCH] arch/sh/boards/mach-dreamcast/irq.c: Remove duplicate header
@ 2019-03-11 15:58 ` Sabyasachi Gupta
  0 siblings, 0 replies; 4+ messages in thread
From: Sabyasachi Gupta @ 2019-03-11 15:58 UTC (permalink / raw)
  To: akpm; +Cc: ysato, dalias, linux-sh, linux-kernel, jrdr.linux

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

Signed-off-by: Sabyasachi Gupta <sabyasachi.linux@gmail.com>
---
 arch/sh/boards/mach-dreamcast/irq.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/sh/boards/mach-dreamcast/irq.c b/arch/sh/boards/mach-dreamcast/irq.c
index 2789647..69fa91c 100644
--- a/arch/sh/boards/mach-dreamcast/irq.c
+++ b/arch/sh/boards/mach-dreamcast/irq.c
@@ -10,7 +10,6 @@
  */
 #include <linux/irq.h>
 #include <linux/io.h>
-#include <linux/irq.h>
 #include <linux/export.h>
 #include <linux/err.h>
 #include <mach/sysasic.h>
-- 
2.7.4

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

* Re: [PATCH] arch/sh/boards/mach-dreamcast/irq.c: Remove duplicate header
  2019-03-11 15:58 ` Sabyasachi Gupta
@ 2019-03-11 16:17   ` Souptick Joarder
  -1 siblings, 0 replies; 4+ messages in thread
From: Souptick Joarder @ 2019-03-11 16:05 UTC (permalink / raw)
  To: Sabyasachi Gupta
  Cc: Andrew Morton, Yoshinori Sato, Rich Felker, linux-sh, linux-kernel

On Mon, Mar 11, 2019 at 9:16 PM Sabyasachi Gupta
<sabyasachi.linux@gmail.com> wrote:
>
> Remove  linux/irq.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/sh/boards/mach-dreamcast/irq.c | 1 -
>  1 file changed, 1 deletion(-)
>
> diff --git a/arch/sh/boards/mach-dreamcast/irq.c b/arch/sh/boards/mach-dreamcast/irq.c
> index 2789647..69fa91c 100644
> --- a/arch/sh/boards/mach-dreamcast/irq.c
> +++ b/arch/sh/boards/mach-dreamcast/irq.c
> @@ -10,7 +10,6 @@
>   */
>  #include <linux/irq.h>
>  #include <linux/io.h>
> -#include <linux/irq.h>
>  #include <linux/export.h>
>  #include <linux/err.h>
>  #include <mach/sysasic.h>
> --
> 2.7.4
>

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

* Re: [PATCH] arch/sh/boards/mach-dreamcast/irq.c: Remove duplicate header
@ 2019-03-11 16:17   ` Souptick Joarder
  0 siblings, 0 replies; 4+ messages in thread
From: Souptick Joarder @ 2019-03-11 16:17 UTC (permalink / raw)
  To: Sabyasachi Gupta
  Cc: Andrew Morton, Yoshinori Sato, Rich Felker, linux-sh, linux-kernel

On Mon, Mar 11, 2019 at 9:16 PM Sabyasachi Gupta
<sabyasachi.linux@gmail.com> wrote:
>
> Remove  linux/irq.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/sh/boards/mach-dreamcast/irq.c | 1 -
>  1 file changed, 1 deletion(-)
>
> diff --git a/arch/sh/boards/mach-dreamcast/irq.c b/arch/sh/boards/mach-dreamcast/irq.c
> index 2789647..69fa91c 100644
> --- a/arch/sh/boards/mach-dreamcast/irq.c
> +++ b/arch/sh/boards/mach-dreamcast/irq.c
> @@ -10,7 +10,6 @@
>   */
>  #include <linux/irq.h>
>  #include <linux/io.h>
> -#include <linux/irq.h>
>  #include <linux/export.h>
>  #include <linux/err.h>
>  #include <mach/sysasic.h>
> --
> 2.7.4
>

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

end of thread, other threads:[~2019-03-11 16:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-11 15:46 [PATCH] arch/sh/boards/mach-dreamcast/irq.c: Remove duplicate header Sabyasachi Gupta
2019-03-11 15:58 ` Sabyasachi Gupta
2019-03-11 16:05 ` Souptick Joarder
2019-03-11 16:17   ` Souptick Joarder

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.