diff mbox series

power: fix spelling typo

Message ID 1600929478-26554-1-git-send-email-wangqing@vivo.com (mailing list archive)
State Not Applicable, archived
Headers show
Series power: fix spelling typo | expand

Commit Message

王擎 Sept. 24, 2020, 6:37 a.m. UTC
Modify the comment typo: "compliment" -> "complement".

Signed-off-by: Wang Qing <wangqing@vivo.com>
---
 drivers/power/supply/ab8500_fg.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Sebastian Reichel Sept. 29, 2020, 11:19 p.m. UTC | #1
Hi,

On Thu, Sep 24, 2020 at 02:37:56PM +0800, Wang Qing wrote:
> Modify the comment typo: "compliment" -> "complement".
> 
> Signed-off-by: Wang Qing <wangqing@vivo.com>
> ---

Thanks, queued with modified patch subject.

-- Sebastian

>  drivers/power/supply/ab8500_fg.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/power/supply/ab8500_fg.c b/drivers/power/supply/ab8500_fg.c
> index 7eec415..592a73d
> --- a/drivers/power/supply/ab8500_fg.c
> +++ b/drivers/power/supply/ab8500_fg.c
> @@ -653,7 +653,7 @@ int ab8500_fg_inst_curr_finalize(struct ab8500_fg *di, int *res)
>  
>  	/*
>  	 * negative value for Discharging
> -	 * convert 2's compliment into decimal
> +	 * convert 2's complement into decimal
>  	 */
>  	if (high & 0x10)
>  		val = (low | (high << 8) | 0xFFFFE000);
> @@ -781,7 +781,7 @@ static void ab8500_fg_acc_cur_work(struct work_struct *work)
>  	if (ret < 0)
>  		goto exit;
>  
> -	/* Check for sign bit in case of negative value, 2's compliment */
> +	/* Check for sign bit in case of negative value, 2's complement */
>  	if (high & 0x10)
>  		val = (low | (med << 8) | (high << 16) | 0xFFE00000);
>  	else
> -- 
> 2.7.4
>
diff mbox series

Patch

diff --git a/drivers/power/supply/ab8500_fg.c b/drivers/power/supply/ab8500_fg.c
index 7eec415..592a73d
--- a/drivers/power/supply/ab8500_fg.c
+++ b/drivers/power/supply/ab8500_fg.c
@@ -653,7 +653,7 @@  int ab8500_fg_inst_curr_finalize(struct ab8500_fg *di, int *res)
 
 	/*
 	 * negative value for Discharging
-	 * convert 2's compliment into decimal
+	 * convert 2's complement into decimal
 	 */
 	if (high & 0x10)
 		val = (low | (high << 8) | 0xFFFFE000);
@@ -781,7 +781,7 @@  static void ab8500_fg_acc_cur_work(struct work_struct *work)
 	if (ret < 0)
 		goto exit;
 
-	/* Check for sign bit in case of negative value, 2's compliment */
+	/* Check for sign bit in case of negative value, 2's complement */
 	if (high & 0x10)
 		val = (low | (med << 8) | (high << 16) | 0xFFE00000);
 	else