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

Commit eccb6014 authored by Lukasz Majewski's avatar Lukasz Majewski Committed by Eduardo Valentin
Browse files

thermal: exynos: Correct sanity check at exynos_report_trigger() function



Up till now, by mistake, wrong variable was tested against being NULL.
Since exynos_report_trigger() is always called with valid p pointer,
it is only necessary to check if a valid thermal zone device is passed.

Reported-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarLukasz Majewski <l.majewski@samsung.com>
Signed-off-by: default avatarEduardo Valentin <edubezval@gmail.com>
parent d3a5247e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -172,8 +172,8 @@ static void exynos_report_trigger(struct exynos_tmu_data *p)
	unsigned long temp;
	unsigned int i;

	if (!p) {
		pr_err("Wrong temperature configuration data\n");
	if (!tz) {
		pr_err("No thermal zone device defined\n");
		return;
	}