lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:   Thu, 23 Jun 2022 05:01:15 +0900
From:   Chanwoo Choi <cwchoi00@...il.com>
To:     Jiang Jian <jiangjian@...rlc.com>, myungjoo.ham@...sung.com,
        cw00.choi@...sung.com
Cc:     linux-kernel@...r.kernel.org
Subject: Re: [PATCH] extcon: drop unexpected word "the" in the comments

On 22. 6. 21. 20:50, Jiang Jian wrote:
> there is an unexpected word "the" in the comments that need to be dropped
> 
> file: ./drivers/extcon/extcon.c
> line: 250
> 
> /* Find the the index of extcon cable in edev->supported_cable */
> changed to
> /* Find the index of extcon cable in edev->supported_cable */
> 
> Signed-off-by: Jiang Jian <jiangjian@...rlc.com>
> ---
>  drivers/extcon/extcon.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/extcon/extcon.c b/drivers/extcon/extcon.c
> index d3a32b806499..0e40418ad287 100644
> --- a/drivers/extcon/extcon.c
> +++ b/drivers/extcon/extcon.c
> @@ -247,7 +247,7 @@ static int find_cable_index_by_id(struct extcon_dev *edev, const unsigned int id
>  {
>  	int i;
>  
> -	/* Find the the index of extcon cable in edev->supported_cable */
> +	/* Find the index of extcon cable in edev->supported_cable */
>  	for (i = 0; i < edev->max_supported; i++) {
>  		if (edev->supported_cable[i] == id)
>  			return i;

Use captitla letter of first char as following:
- extcon: Drop unexpected word "the" in the comments

Applied it.

-- 
Best Regards,
Samsung Electronics
Chanwoo Choi

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ