Commit 9aa6c6a2047cc99137bdee46c55063eff84dda9e

Con Kolivas 2014-02-20T11:54:48

Set the per die clock on hfa to the known starting base clock instead of our requested clock rate.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/driver-hashfast.c b/driver-hashfast.c
index 6baed0c..2bf54e9 100644
--- a/driver-hashfast.c
+++ b/driver-hashfast.c
@@ -526,7 +526,7 @@ static bool hfa_detect_common(struct cgpu_info *hashfast)
 	if (unlikely(!(info->die_data)))
 		quit(1, "Failed to calloc die_data");
 	for (i = 0; i < info->asic_count; i++)
-		info->die_data[i].hash_clock = info->hash_clock_rate;
+		info->die_data[i].hash_clock = info->base_clock;
 
 	// The per-die statistics array
 	info->die_statistics = calloc(info->asic_count, sizeof(struct hf_long_statistics));