[PATCH] init.h: fix spelling typo in comment

Jiangshan Yi posted 1 patch 3 years, 7 months ago
include/linux/init.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] init.h: fix spelling typo in comment
Posted by Jiangshan Yi 3 years, 7 months ago
From: Jiangshan Yi <yijiangshan@kylinos.cn>

Fix spelling typo in comment.

Reported-by: k2ci <kernel-bot@kylinos.cn>
Signed-off-by: Jiangshan Yi <yijiangshan@kylinos.cn>
---
 include/linux/init.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/init.h b/include/linux/init.h
index baf0b29a7010..3254766ebbf2 100644
--- a/include/linux/init.h
+++ b/include/linux/init.h
@@ -134,7 +134,7 @@ static inline initcall_t initcall_from_entry(initcall_entry_t *entry)
 
 extern initcall_entry_t __con_initcall_start[], __con_initcall_end[];
 
-/* Used for contructor calls. */
+/* Used for constructor calls. */
 typedef void (*ctor_fn_t)(void);
 
 struct file_system_type;
-- 
2.27.0


No virus found
		Checked by Hillstone Network AntiVirus
Re: [PATCH] init.h: fix spelling typo in comment
Posted by Greg KH 3 years, 7 months ago
On Mon, Sep 05, 2022 at 10:10:34AM +0800, Jiangshan Yi wrote:
> From: Jiangshan Yi <yijiangshan@kylinos.cn>
> 
> Fix spelling typo in comment.
> 
> Reported-by: k2ci <kernel-bot@kylinos.cn>
> Signed-off-by: Jiangshan Yi <yijiangshan@kylinos.cn>

What is "k2ci"?

Please follow the Documentation/process/researcher-guidelines.rst rules
when you use tools like this.

thanks,

greg k-h
Re:Re: [PATCH] init.h: fix spelling typo in comment
Posted by Yi Jiangshan 3 years, 7 months ago
At 2022-09-07 20:35:06, "Greg KH" <gregkh@linuxfoundation.org> wrote:
>On Mon, Sep 05, 2022 at 10:10:34AM +0800, Jiangshan Yi wrote:
>> From: Jiangshan Yi <yijiangshan@kylinos.cn>
>> 
>> Fix spelling typo in comment.
>> 
>> Reported-by: k2ci <kernel-bot@kylinos.cn>
>> Signed-off-by: Jiangshan Yi <yijiangshan@kylinos.cn>
>
>What is "k2ci"?

The k2ci is an automated compilation, detection and testing platform built by the company。Just like the kernel test robot built by Intel。
So I write like this:
Reported-by: k2ci <kernel-bot@kylinos.cn>
Refer to the following:
Reported-by: kernel test robot <lkp@intel.com>
Documentation/process/researcher-guidelines.rst

thanks,

Jiangshan Yi