Commit 5a24c2829a83edd88c33fc987c08128ab2a310ba

Con Kolivas 2011-09-16T16:46:14

Try to set temperature regardless of whether get fanspeed fails. This may need to be reverted if it causes problems.

diff --git a/adl.c b/adl.c
index 3bae161..e5a14a8 100644
--- a/adl.c
+++ b/adl.c
@@ -760,7 +760,6 @@ static int set_fanspeed(int gpu, int iFanSpeed)
 	if (ADL_Overdrive5_FanSpeed_Get(ga->iAdapterIndex, 0, &ga->lpFanSpeedValue) != ADL_OK) {
 		if (opt_debug)
 			applog(LOG_DEBUG, "GPU %d call to fanspeed get failed", gpu);
-		goto out;
 	}
 	if (!(ga->lpFanSpeedInfo.iFlags & ADL_DL_FANCTRL_SUPPORTS_PERCENT_WRITE)) {
 		/* Must convert speed to an RPM */
@@ -776,8 +775,8 @@ static int set_fanspeed(int gpu, int iFanSpeed)
 	ga->lpFanSpeedValue.iFanSpeed = iFanSpeed;
 	ret = ADL_Overdrive5_FanSpeed_Set(ga->iAdapterIndex, 0, &ga->lpFanSpeedValue);
 	ga->managed = true;
-out:
 	unlock_adl();
+
 	return ret;
 }