Capitalise driver long names used in applog messages
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
diff --git a/driver-bitforce.c b/driver-bitforce.c
index be22c7b..69da9a5 100644
--- a/driver-bitforce.c
+++ b/driver-bitforce.c
@@ -752,7 +752,7 @@ static struct api_data *bitforce_api_stats(struct cgpu_info *cgpu)
struct device_drv bitforce_drv = {
.drv = DRIVER_BITFORCE,
- .dname = "bitforce",
+ .dname = "BitForce",
.name = "BFL",
.drv_detect = bitforce_detect,
.get_api_stats = bitforce_api_stats,
diff --git a/driver-icarus.c b/driver-icarus.c
index 1faab2b..4930031 100644
--- a/driver-icarus.c
+++ b/driver-icarus.c
@@ -902,7 +902,7 @@ static void icarus_shutdown(struct thr_info *thr)
struct device_drv icarus_drv = {
.drv = DRIVER_ICARUS,
- .dname = "icarus",
+ .dname = "Icarus",
.name = "ICA",
.drv_detect = icarus_detect,
.get_api_stats = icarus_api_stats,
diff --git a/driver-modminer.c b/driver-modminer.c
index eb54d91..2c850b8 100644
--- a/driver-modminer.c
+++ b/driver-modminer.c
@@ -1184,7 +1184,7 @@ static char *modminer_set_device(struct cgpu_info *modminer, char *option, char
struct device_drv modminer_drv = {
.drv = DRIVER_MODMINER,
- .dname = "modminer",
+ .dname = "ModMiner",
.name = "MMQ",
.drv_detect = modminer_detect,
.get_statline_before = get_modminer_statline_before,