Browse Source

Revert "Fan control should be fast enough to adjust now without needing to set a high starting speed."

This reverts commit e69080e987d83c39b50c8dd97829966a48908051.

On 2nd thought, this is still a safe default.
Con Kolivas 14 years ago
parent
commit
083c676378
1 changed files with 4 additions and 1 deletions
  1. 4 1
      adl.c

+ 4 - 1
adl.c

@@ -457,8 +457,11 @@ void init_adl(int nDevs)
 			ga->overtemp = opt_overheattemp;
 		if (!gpus[gpu].cutofftemp)
 			gpus[gpu].cutofftemp = opt_cutofftemp;
-		if (opt_autofan)
+		if (opt_autofan) {
 			ga->autofan = true;
+			/* Set a safe starting default if we're automanaging fan speeds */
+			set_fanspeed(gpu, gpus[gpu].gpu_fan);
+		}
 		if (opt_autoengine) {
 			ga->autoengine = true;
 			ga->managed = true;