Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f9dd3fcd authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "thermal: qcom-spmi-temp-alarm: Don't suppress negative temp"

parents 61f9483e 4ef23c8e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
/*
 * Copyright (c) 2011-2015, 2017, The Linux Foundation. All rights reserved.
 * Copyright (c) 2011-2015, 2017, 2020, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
@@ -201,7 +201,7 @@ static int qpnp_tm_get_temp(void *data, int *temp)
		chip->temp = mili_celsius;
	}

	*temp = chip->temp < 0 ? 0 : chip->temp;
	*temp = chip->temp;

	return 0;
}