All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] watchdog: change "char *" string form to "char []"
@ 2022-05-24  0:33 Yu Zhe
  2022-05-24  0:42 ` Guenter Roeck
  0 siblings, 1 reply; 2+ messages in thread
From: Yu Zhe @ 2022-05-24  0:33 UTC (permalink / raw)
  To: sander, wim, linux; +Cc: linux-watchdog, linux-kernel, Yu Zhe

The string form of "char []" declares a single variable. It is better
than "char *" which creates two variables.

Signed-off-by: Yu Zhe <yuzhe@nfschina.com>
---
 drivers/watchdog/realtek_otto_wdt.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/watchdog/realtek_otto_wdt.c b/drivers/watchdog/realtek_otto_wdt.c
index 60058a0c3ec4..c653ec73a999 100644
--- a/drivers/watchdog/realtek_otto_wdt.c
+++ b/drivers/watchdog/realtek_otto_wdt.c
@@ -265,7 +265,7 @@ static int otto_wdt_probe_clk(struct otto_wdt_ctrl *ctrl)
 
 static int otto_wdt_probe_reset_mode(struct otto_wdt_ctrl *ctrl)
 {
-	static const char *mode_property = "realtek,reset-mode";
+	static const char mode_property[] = "realtek,reset-mode";
 	const struct fwnode_handle *node = ctrl->dev->fwnode;
 	int mode_count;
 	u32 mode;
-- 
2.25.1


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

* Re: [PATCH] watchdog: change "char *" string form to "char []"
  2022-05-24  0:33 [PATCH] watchdog: change "char *" string form to "char []" Yu Zhe
@ 2022-05-24  0:42 ` Guenter Roeck
  0 siblings, 0 replies; 2+ messages in thread
From: Guenter Roeck @ 2022-05-24  0:42 UTC (permalink / raw)
  To: Yu Zhe; +Cc: sander, wim, linux-watchdog, linux-kernel

On Mon, May 23, 2022 at 05:33:35PM -0700, Yu Zhe wrote:
> The string form of "char []" declares a single variable. It is better
> than "char *" which creates two variables.
> 

Huh, what ? One is a character array, the other a pointer.
It is still a single variable.

I don't mind if you want to use [] in your own code, but please
stop making such changes in other people's code. 

Guenter

> Signed-off-by: Yu Zhe <yuzhe@nfschina.com>
> ---
>  drivers/watchdog/realtek_otto_wdt.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/watchdog/realtek_otto_wdt.c b/drivers/watchdog/realtek_otto_wdt.c
> index 60058a0c3ec4..c653ec73a999 100644
> --- a/drivers/watchdog/realtek_otto_wdt.c
> +++ b/drivers/watchdog/realtek_otto_wdt.c
> @@ -265,7 +265,7 @@ static int otto_wdt_probe_clk(struct otto_wdt_ctrl *ctrl)
>  
>  static int otto_wdt_probe_reset_mode(struct otto_wdt_ctrl *ctrl)
>  {
> -	static const char *mode_property = "realtek,reset-mode";
> +	static const char mode_property[] = "realtek,reset-mode";
>  	const struct fwnode_handle *node = ctrl->dev->fwnode;
>  	int mode_count;
>  	u32 mode;
> -- 
> 2.25.1
> 

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

end of thread, other threads:[~2022-05-24  0:42 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-24  0:33 [PATCH] watchdog: change "char *" string form to "char []" Yu Zhe
2022-05-24  0:42 ` Guenter Roeck

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.