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

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
Loading
Loading
Loading
Loading
+10 −5
Original line number Diff line number Diff line
@@ -674,14 +674,19 @@ 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;

	default:
		return false;
	}
}

/*
 * Returns true if a battery under temperature condition is detected