Browse Source

Revert "Pass the correct GPU from the menu to the adl code."

This reverts commit 7bcda9a28f.

Corrected for virtual device twice by mistake.
nfactor-troky
Con Kolivas 13 years ago
parent
commit
af5aaece97
  1. 3
      adl.c
  2. 4
      adl.h

3
adl.c

@ -1163,9 +1163,8 @@ void change_autosettings(int gpu) @@ -1163,9 +1163,8 @@ void change_autosettings(int gpu)
}
}
void change_gpusettings(int disp_gpu)
void change_gpusettings(int gpu)
{
int gpu = gpus[disp_gpu].virtual_gpu;
struct gpu_adl *ga = &gpus[gpu].adl;
float fval, fmin = 0, fmax = 0;
int val, imin = 0, imax = 0;

4
adl.h

@ -17,13 +17,13 @@ int gpu_fanspeed(int gpu); @@ -17,13 +17,13 @@ int gpu_fanspeed(int gpu);
int gpu_fanpercent(int gpu);
bool gpu_stats(int gpu, float *temp, int *engineclock, int *memclock, float *vddc,
int *activity, int *fanspeed, int *fanpercent, int *powertune);
void change_gpusettings(int disp_gpu);
void change_gpusettings(int gpu);
void gpu_autotune(int gpu, bool *enable);
void clear_adl(int nDevs);
#else /* HAVE_ADL */
#define adl_active (0)
static inline void init_adl(int nDevs) {}
static inline void change_gpusettings(int disp_gpu) { }
static inline void change_gpusettings(int gpu) { }
static inline void clear_adl(int nDevs) {}
#endif
#endif

Loading…
Cancel
Save