1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-22 20:44:19 +00:00

Get rid of unused variable.

This commit is contained in:
Con Kolivas 2011-10-14 21:51:55 +11:00
parent a41db9d436
commit 5976f6b32f

4
adl.c
View File

@ -784,9 +784,8 @@ static int set_fanspeed(int gpu, int iFanSpeed)
static int set_powertune(int gpu, int iPercentage)
{
int oldPercentage, dummy;
struct gpu_adl *ga;
int ret = 1;
int dummy, ret = 1;
if (!gpus[gpu].has_adl || !adl_active) {
wlogprint("Set powertune not supported\n");
@ -794,7 +793,6 @@ static int set_powertune(int gpu, int iPercentage)
}
ga = &gpus[gpu].adl;
oldPercentage = ga->iPercentage;
lock_adl();
ADL_Overdrive5_PowerControl_Set(ga->iAdapterIndex, iPercentage);