mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-22 20:44:19 +00:00
Change to setting avalon_task to being the pointer for avalon_idle.
This commit is contained in:
parent
e2578033cb
commit
91a82cd81f
@ -384,17 +384,18 @@ static void avalon_idle(struct cgpu_info *avalon)
|
|||||||
int i, fd = avalon->device_fd;
|
int i, fd = avalon->device_fd;
|
||||||
|
|
||||||
for (i = 0; i < info->miner_count; i++) {
|
for (i = 0; i < info->miner_count; i++) {
|
||||||
struct avalon_task at;
|
char buf[AVALON_WRITE_SIZE];
|
||||||
|
struct avalon_task *at = (struct avalon_task *)buf;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
if (unlikely(avalon_buffer_full(fd))) {
|
if (unlikely(avalon_buffer_full(fd))) {
|
||||||
applog(LOG_WARNING, "Avalon buffer full in avalon_idle");
|
applog(LOG_WARNING, "Avalon buffer full in avalon_idle");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
avalon_init_task(&at, 0, 0, info->fan_pwm,
|
avalon_init_task(at, 0, 0, info->fan_pwm,
|
||||||
info->timeout, info->asic_count,
|
info->timeout, info->asic_count,
|
||||||
info->miner_count, 1, 1, info->frequency);
|
info->miner_count, 1, 1, info->frequency);
|
||||||
ret = avalon_write(fd, (char *)&at, AVALON_WRITE_SIZE);
|
ret = avalon_write(fd, buf, AVALON_WRITE_SIZE);
|
||||||
if (unlikely(ret == AVA_SEND_ERROR))
|
if (unlikely(ret == AVA_SEND_ERROR))
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user