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

Commit f439539b authored by Nicholas Mc Guire's avatar Nicholas Mc Guire Committed by Kalle Valo
Browse files

ath10k: thermal: match wait_for_completion_timeout return type



Return type of wait_for_completion_timeout is unsigned long not int.
An appropriately named unsigned long is added and the assignments fixed up.

Signed-off-by: default avatarNicholas Mc Guire <hofrat@osadl.org>
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent 6e8d5438
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -75,6 +75,7 @@ static ssize_t ath10k_thermal_show_temp(struct device *dev,
{
	struct ath10k *ar = dev_get_drvdata(dev);
	int ret, temperature;
	unsigned long time_left;

	mutex_lock(&ar->conf_mutex);

@@ -96,9 +97,9 @@ static ssize_t ath10k_thermal_show_temp(struct device *dev,
		goto out;
	}

	ret = wait_for_completion_timeout(&ar->thermal.wmi_sync,
	time_left = wait_for_completion_timeout(&ar->thermal.wmi_sync,
						ATH10K_THERMAL_SYNC_TIMEOUT_HZ);
	if (ret == 0) {
	if (!time_left) {
		ath10k_warn(ar, "failed to synchronize thermal read\n");
		ret = -ETIMEDOUT;
		goto out;