linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mtd:do not initialise statics to 0.
@ 2022-07-20 19:55 Xin Gao
  2022-07-21  6:43 ` Tudor.Ambarus
  0 siblings, 1 reply; 2+ messages in thread
From: Xin Gao @ 2022-07-20 19:55 UTC (permalink / raw)
  To: miquel.raynal, richard, vigneshr
  Cc: jim.cromie, linux-mtd, linux-kernel, Xin Gao

do not initialise statics to 0.

Signed-off-by: Xin Gao <gaoxin@cdjrlc.com>
---
 drivers/mtd/maps/scx200_docflash.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mtd/maps/scx200_docflash.c b/drivers/mtd/maps/scx200_docflash.c
index 8462662b7128..a565d69d28d6 100644
--- a/drivers/mtd/maps/scx200_docflash.c
+++ b/drivers/mtd/maps/scx200_docflash.c
@@ -24,7 +24,7 @@ MODULE_AUTHOR("Christer Weinigel <wingel@hack.org>");
 MODULE_DESCRIPTION("NatSemi SCx200 DOCCS Flash Driver");
 MODULE_LICENSE("GPL");
 
-static int probe = 0;		/* Don't autoprobe */
+static int probe;		/* Don't autoprobe */
 static unsigned size = 0x1000000; /* 16 MiB the whole ISA address space */
 static unsigned width = 8;	/* Default to 8 bits wide */
 static char *flashtype = "cfi_probe";
-- 
2.30.2


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

* Re: [PATCH] mtd:do not initialise statics to 0.
  2022-07-20 19:55 [PATCH] mtd:do not initialise statics to 0 Xin Gao
@ 2022-07-21  6:43 ` Tudor.Ambarus
  0 siblings, 0 replies; 2+ messages in thread
From: Tudor.Ambarus @ 2022-07-21  6:43 UTC (permalink / raw)
  To: gaoxin, miquel.raynal, richard, vigneshr
  Cc: jim.cromie, linux-mtd, linux-kernel

On 7/20/22 22:55, Xin Gao wrote:
> [You don't often get email from gaoxin@cdjrlc.com. Learn why this is important at https://aka.ms/LearnAboutSenderIdentification ]
> 
> EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe
> 
> do not initialise statics to 0.

Please describe why. It may worth reading:
https://www.kernel.org/doc/html/latest/process/submitting-patches.html

> 
> Signed-off-by: Xin Gao <gaoxin@cdjrlc.com>
> ---
>  drivers/mtd/maps/scx200_docflash.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/mtd/maps/scx200_docflash.c b/drivers/mtd/maps/scx200_docflash.c
> index 8462662b7128..a565d69d28d6 100644
> --- a/drivers/mtd/maps/scx200_docflash.c
> +++ b/drivers/mtd/maps/scx200_docflash.c
> @@ -24,7 +24,7 @@ MODULE_AUTHOR("Christer Weinigel <wingel@hack.org>");
>  MODULE_DESCRIPTION("NatSemi SCx200 DOCCS Flash Driver");
>  MODULE_LICENSE("GPL");
> 
> -static int probe = 0;          /* Don't autoprobe */
> +static int probe;              /* Don't autoprobe */
>  static unsigned size = 0x1000000; /* 16 MiB the whole ISA address space */
>  static unsigned width = 8;     /* Default to 8 bits wide */
>  static char *flashtype = "cfi_probe";
> --
> 2.30.2
> 
> 
> ______________________________________________________
> Linux MTD discussion mailing list
> http://lists.infradead.org/mailman/listinfo/linux-mtd/


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

end of thread, other threads:[~2022-07-21  6:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-20 19:55 [PATCH] mtd:do not initialise statics to 0 Xin Gao
2022-07-21  6:43 ` Tudor.Ambarus

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