Browse Source

Use a lowercase driver name to fix --scan pattern matching
Otherwise the following doesn't work: -S noauto -S twinfury:auto

Nate Woolls 12 years ago
parent
commit
03b1c8102d
1 changed files with 2 additions and 1 deletions
  1. 2 1
      driver-twinfury.c

+ 2 - 1
driver-twinfury.c

@@ -533,7 +533,8 @@ void twinfury_wlogprint_status(struct cgpu_info * const proc)
 
 //------------------------------------------------------------------------------
 struct device_drv twinfury_drv = {
-	.dname = "Twinfury",
+        //lowercase driver name so --scan pattern matching works
+	.dname = "twinfury",
 	.name = "TBF",
 	.probe_priority = -111,