Display the base clockrate for hfa devices with a different name to per die clockrates to be able to easily distinguish them.
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;