Commit 032b01eb625485a9bf1e12fea1fe1285a8c0bb0f

Con Kolivas 2014-02-25T21:11:00

Display the base clockrate for hfa devices with a different name to per die clockrates to be able to easily distinguish them.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/driver-hashfast.c b/driver-hashfast.c
index 7cfc2e0..f06185b 100644
--- a/driver-hashfast.c
+++ b/driver-hashfast.c
@@ -1639,7 +1639,7 @@ static struct api_data *hfa_api_stats(struct cgpu_info *cgpu)
 	root = api_add_string(root, "hardware rev", buf, true);
 	root = api_add_hex32(root, "serial number", &db->serial_number, true);
 	varint = db->hash_clockrate;
-	root = api_add_int(root, "hash clockrate", &varint, true);
+	root = api_add_int(root, "base clockrate", &varint, true);
 	varint = db->inflight_target;
 	root = api_add_int(root, "inflight target", &varint, true);
 	varint = db->sequence_modulus;