Commit d05779191541b4502aaba0ada5ca7bfa24f5733f

Kano 2013-01-22T21:58:33

Capitalise driver long names used in applog messages

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,