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

Commit 4ef23c8e authored by Veera Vegivada's avatar Veera Vegivada
Browse files

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



Currently driver is suppressing the negative temperature
readings from the vadc. Consumers of the thermal zones need
to read the negative temperature too. Don't suppress the
readings.

Change-Id: I147c270176d2cfce63fee71bceb64e784cfb1efa
Signed-off-by: default avatarVeera Vegivada <vvegivad@codeaurora.org>
parent e39cf4ae
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;
}