From ca3793558a640275f5795aab95c94ef7b725119a Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Mon, 5 Sep 2011 16:14:43 +1000 Subject: [PATCH] Ramp up the fan more if we're over target temperature. --- adl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adl.c b/adl.c index 0e23b20b..e61990db 100644 --- a/adl.c +++ b/adl.c @@ -830,7 +830,7 @@ void gpu_autotune(int gpu) } else if (temp > ga->targettemp && fanpercent < 85) { if (opt_debug) applog(LOG_DEBUG, "Temperature over target, increasing fanspeed"); - newpercent = fanpercent + 5; + newpercent = fanpercent + 10; if (newpercent > 85) newpercent = 85; } else if (fanpercent && temp < ga->targettemp - opt_hysteresis) {