Commit e839a448 authored by Chris Lapa's avatar Chris Lapa Committed by Sebastian Reichel

power: supply: bq27xxx: move overtemp tests to a switch statement.

This is done for readability as the upcoming commits will add a lot of
cases.

tested: no
Signed-off-by: default avatarChris Lapa <chris@lapa.com.au>
Acked-by: default avatarPali Rohár <pali.rohar@gmail.com>
Reviewed-by: default avatarAndrew F. Davis <afd@ti.com>
Signed-off-by: default avatarSebastian Reichel <sre@kernel.org>
parent 7cbad9fa
......@@ -674,13 +674,18 @@ static int bq27xxx_battery_read_pwr_avg(struct bq27xxx_device_info *di)
*/
static bool bq27xxx_battery_overtemp(struct bq27xxx_device_info *di, u16 flags)
{
if (di->chip == BQ27500 || di->chip == BQ27510 ||
di->chip == BQ27541 || di->chip == BQ27545)
switch (di->chip) {
case BQ27500:
case BQ27510:
case BQ27541:
case BQ27545:
return flags & (BQ27XXX_FLAG_OTC | BQ27XXX_FLAG_OTD);
if (di->chip == BQ27530 || di->chip == BQ27421)
case BQ27530:
case BQ27421:
return flags & BQ27XXX_FLAG_OT;
return false;
default:
return false;
}
}
/*
......
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