Commit ec3af53a authored by Wang Qing's avatar Wang Qing Committed by Sebastian Reichel

power: supply: ab8500-fg: fix spelling typo

Modify the comment typo: "compliment" -> "complement".
Signed-off-by: default avatarWang Qing <wangqing@vivo.com>
Signed-off-by: default avatarSebastian Reichel <sebastian.reichel@collabora.com>
parent c8db5683
...@@ -653,7 +653,7 @@ int ab8500_fg_inst_curr_finalize(struct ab8500_fg *di, int *res) ...@@ -653,7 +653,7 @@ int ab8500_fg_inst_curr_finalize(struct ab8500_fg *di, int *res)
/* /*
* negative value for Discharging * negative value for Discharging
* convert 2's compliment into decimal * convert 2's complement into decimal
*/ */
if (high & 0x10) if (high & 0x10)
val = (low | (high << 8) | 0xFFFFE000); val = (low | (high << 8) | 0xFFFFE000);
...@@ -781,7 +781,7 @@ static void ab8500_fg_acc_cur_work(struct work_struct *work) ...@@ -781,7 +781,7 @@ static void ab8500_fg_acc_cur_work(struct work_struct *work)
if (ret < 0) if (ret < 0)
goto exit; 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) if (high & 0x10)
val = (low | (med << 8) | (high << 16) | 0xFFE00000); val = (low | (med << 8) | (high << 16) | 0xFFE00000);
else else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment