[PATCH v2] watchdog: bd96081: Fix a spelling mistake

Chu Guangqing posted 1 patch 2 months, 3 weeks ago
drivers/watchdog/bd96801_wdt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH v2] watchdog: bd96081: Fix a spelling mistake
Posted by Chu Guangqing 2 months, 3 weeks ago
The spelling of the word "initializate" is incorrect; the correct spelling is
"initialize".

Signed-off-by: Chu Guangqing <chuguangqing@inspur.com>
---
 drivers/watchdog/bd96801_wdt.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/watchdog/bd96801_wdt.c b/drivers/watchdog/bd96801_wdt.c
index 12b74fd2bc05..43ec23c53e62 100644
--- a/drivers/watchdog/bd96801_wdt.c
+++ b/drivers/watchdog/bd96801_wdt.c
@@ -370,7 +370,7 @@ static int bd96801_wdt_probe(struct platform_device *pdev)
 
 		set_bit(WDOG_HW_RUNNING, &w->wdt.status);
 	} else {
-		/* If WDG is not running so we will initializate it */
+		/* If WDG is not running so we will initialize it */
 		ret = init_wdg_hw(w);
 		if (ret)
 			return ret;
-- 
2.43.7
Re: [PATCH v2] watchdog: bd96081: Fix a spelling mistake
Posted by Matti Vaittinen 2 months, 3 weeks ago
Hi Chu!

Thanks for the fix!

Hm. I suppose I missed the v1. I agree with Guenter that a change log 
would be nice. Then I knew what was in v1 without looking for it.



On 14/11/2025 04:05, Chu Guangqing wrote:
> The spelling of the word "initializate" is incorrect; the correct spelling is
> "initialize".
> 
> Signed-off-by: Chu Guangqing <chuguangqing@inspur.com>
> ---
>   drivers/watchdog/bd96801_wdt.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/watchdog/bd96801_wdt.c b/drivers/watchdog/bd96801_wdt.c
> index 12b74fd2bc05..43ec23c53e62 100644
> --- a/drivers/watchdog/bd96801_wdt.c
> +++ b/drivers/watchdog/bd96801_wdt.c
> @@ -370,7 +370,7 @@ static int bd96801_wdt_probe(struct platform_device *pdev)
>   
>   		set_bit(WDOG_HW_RUNNING, &w->wdt.status);
>   	} else {
> -		/* If WDG is not running so we will initializate it */
> +		/* If WDG is not running so we will initialize it */

I think it would be even better if the 'so' was dropped. And, as a 
matter of fact, I am not sure the comment serves any real purpose here. 
The code pretty much says it already. So, I am OK with either dropping 
the 'so' as well, or the whole comment.

With that:
Reviewed-by: Matti Vaittinen <mazziesaccount@gmail.com>

>   		ret = init_wdg_hw(w);
>   		if (ret)
>   			return ret;
Yours,
	-- Matti

---
Matti Vaittinen
Linux kernel developer at ROHM Semiconductors
Oulu Finland

~~ When things go utterly wrong vim users can always type :help! ~~
Re: [PATCH v2] watchdog: bd96081: Fix a spelling mistake
Posted by Guenter Roeck 2 months, 3 weeks ago
On 11/13/25 18:05, Chu Guangqing wrote:
> The spelling of the word "initializate" is incorrect; the correct spelling is
> "initialize".
> 
> Signed-off-by: Chu Guangqing <chuguangqing@inspur.com>
> ---

Change log goes here, even for trivial patches.

>   drivers/watchdog/bd96801_wdt.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/watchdog/bd96801_wdt.c b/drivers/watchdog/bd96801_wdt.c
> index 12b74fd2bc05..43ec23c53e62 100644
> --- a/drivers/watchdog/bd96801_wdt.c
> +++ b/drivers/watchdog/bd96801_wdt.c
> @@ -370,7 +370,7 @@ static int bd96801_wdt_probe(struct platform_device *pdev)
>   
>   		set_bit(WDOG_HW_RUNNING, &w->wdt.status);
>   	} else {
> -		/* If WDG is not running so we will initializate it */
> +		/* If WDG is not running so we will initialize it */
>   		ret = init_wdg_hw(w);
>   		if (ret)
>   			return ret;