OSDN Git Service

power: supply: ab8500-fg: fix spelling typo
authorWang Qing <wangqing@vivo.com>
Thu, 24 Sep 2020 06:37:56 +0000 (14:37 +0800)
committerSebastian Reichel <sre@kernel.org>
Tue, 29 Sep 2020 23:12:22 +0000 (01:12 +0200)
Modify the comment typo: "compliment" -> "complement".

Signed-off-by: Wang Qing <wangqing@vivo.com>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
drivers/power/supply/ab8500_fg.c

index 751c4f6..3abd2cd 100644 (file)
@@ -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