aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/power/supply/ltc2941-battery-gauge.c
diff options
context:
space:
mode:
authorMichał Mirosław <mirq-linux@rere.qmqm.pl>2022-01-11 03:32:40 +0100
committerSebastian Reichel <sre@kernel.org>2022-02-13 22:21:42 +0100
commitcf215c37f581c4afd6a4880eeb9f4ac70d000c32 (patch)
tree9275ebf064e2ea00e8894ad4c208c3d9b4acf5c3 /drivers/power/supply/ltc2941-battery-gauge.c
parentpower: supply: ab8500_charger: Fix spelling typo (diff)
downloadlinux-dev-cf215c37f581c4afd6a4880eeb9f4ac70d000c32.tar.xz
linux-dev-cf215c37f581c4afd6a4880eeb9f4ac70d000c32.zip
power: supply: ltc2941: simplify Qlsb calculation
Replace two divisions with a subtraction+shift for a small code size improvement and less brackets. Signed-off-by: Michał Mirosław <mirq-linux@rere.qmqm.pl> Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Diffstat (limited to 'drivers/power/supply/ltc2941-battery-gauge.c')
-rw-r--r--drivers/power/supply/ltc2941-battery-gauge.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/power/supply/ltc2941-battery-gauge.c b/drivers/power/supply/ltc2941-battery-gauge.c
index 09f3e78af4e0..c0cbf4cd59ee 100644
--- a/drivers/power/supply/ltc2941-battery-gauge.c
+++ b/drivers/power/supply/ltc2941-battery-gauge.c
@@ -490,13 +490,13 @@ static int ltc294x_i2c_probe(struct i2c_client *client,
if (info->id == LTC2943_ID) {
if (prescaler_exp > LTC2943_MAX_PRESCALER_EXP)
prescaler_exp = LTC2943_MAX_PRESCALER_EXP;
- info->Qlsb = ((340 * 50000) / r_sense) /
- (4096 / (1 << (2*prescaler_exp)));
+ info->Qlsb = ((340 * 50000) / r_sense) >>
+ (12 - 2*prescaler_exp);
} else {
if (prescaler_exp > LTC2941_MAX_PRESCALER_EXP)
prescaler_exp = LTC2941_MAX_PRESCALER_EXP;
- info->Qlsb = ((85 * 50000) / r_sense) /
- (128 / (1 << prescaler_exp));
+ info->Qlsb = ((85 * 50000) / r_sense) >>
+ (7 - prescaler_exp);
}
/* Read status register to check for LTC2942 */