Browse Source

Merge pull request #242 from kanoi/master

api.c allow unwell devices to be enabled so they can be cured
nfactor-troky
Con Kolivas 12 years ago
parent
commit
a9eb833afb
  1. 2
      api.c

2
api.c

@ -1174,10 +1174,12 @@ static void pgaenable(__maybe_unused SOCKETTYPE c, char *param, bool isjson) @@ -1174,10 +1174,12 @@ static void pgaenable(__maybe_unused SOCKETTYPE c, char *param, bool isjson)
return;
}
#if 0 /* A DISABLED device wont change status FIXME: should disabling make it WELL? */
if (cgpu->status != LIFE_WELL) {
strcpy(io_buffer, message(MSG_PGAUNW, id, NULL, isjson));
return;
}
#endif
for (i = 0; i < mining_threads; i++) {
pga = thr_info[i].cgpu->device_id;

Loading…
Cancel
Save