linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] m68k:do not initialise statics to 0.
@ 2022-07-18 10:55 Xin Gao
  2023-01-22 16:33 ` Geert Uytterhoeven
  0 siblings, 1 reply; 2+ messages in thread
From: Xin Gao @ 2022-07-18 10:55 UTC (permalink / raw)
  To: geert; +Cc: linux-m68k, linux-kernel, Xin Gao

Delete static variables initialized to 0.

Signed-off-by: Xin Gao <gaoxin@cdjrlc.com>
---
 arch/m68k/q40/q40ints.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/m68k/q40/q40ints.c b/arch/m68k/q40/q40ints.c
index 6886a5d0007b..dfb307ba1185 100644
--- a/arch/m68k/q40/q40ints.c
+++ b/arch/m68k/q40/q40ints.c
@@ -201,8 +201,8 @@ static int ccleirq=60;    /* ISA dev IRQs*/
 #define DEBUG_Q40INT
 /*#define IP_USE_DISABLE *//* would be nice, but crashes ???? */
 
-static int mext_disabled=0;  /* ext irq disabled by master chip? */
-static int aliased_irq=0;  /* how many times inside handler ?*/
+static int mext_disabled;  /* ext irq disabled by master chip? */
+static int aliased_irq;  /* how many times inside handler ?*/
 
 
 /* got interrupt, dispatch to ISA or keyboard/timer IRQs */
-- 
2.30.2



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

* Re: [PATCH] m68k:do not initialise statics to 0.
  2022-07-18 10:55 [PATCH] m68k:do not initialise statics to 0 Xin Gao
@ 2023-01-22 16:33 ` Geert Uytterhoeven
  0 siblings, 0 replies; 2+ messages in thread
From: Geert Uytterhoeven @ 2023-01-22 16:33 UTC (permalink / raw)
  To: gaoxin; +Cc: linux-m68k, linux-kernel

Hi Xin,

On Mon, Jul 18, 2022 at 12:56 PM Xin Gao <gaoxin@cdjrlc.com> wrote:
> Delete static variables initialized to 0.
>
> Signed-off-by: Xin Gao <gaoxin@cdjrlc.com>

Thanks for your patch!

> --- a/arch/m68k/q40/q40ints.c
> +++ b/arch/m68k/q40/q40ints.c
> @@ -201,8 +201,8 @@ static int ccleirq=60;    /* ISA dev IRQs*/
>  #define DEBUG_Q40INT
>  /*#define IP_USE_DISABLE *//* would be nice, but crashes ???? */
>
> -static int mext_disabled=0;  /* ext irq disabled by master chip? */
> -static int aliased_irq=0;  /* how many times inside handler ?*/
> +static int mext_disabled;  /* ext irq disabled by master chip? */
> +static int aliased_irq;  /* how many times inside handler ?*/
>
>
>  /* got interrupt, dispatch to ISA or keyboard/timer IRQs */

Reviewed-by: Geert Uytterhoeven <geert@linux-m68k.org>
i.e. will queue in the m68k for-v6.3 branch.

Gr{oetje,eeting}s,

                        Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

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

end of thread, other threads:[~2023-01-22 16:33 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-18 10:55 [PATCH] m68k:do not initialise statics to 0 Xin Gao
2023-01-22 16:33 ` Geert Uytterhoeven

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