Browse Source

Bugfix: bf1: Add missing header to Makefile.am, and fix .dname/.name

Luke Dashjr 12 years ago
parent
commit
89406c9410
2 changed files with 3 additions and 3 deletions
  1. 1 1
      Makefile.am
  2. 2 2
      driver-bf1.c

+ 1 - 1
Makefile.am

@@ -189,7 +189,7 @@ endif
 endif
 
 if HAS_BF1
-bfgminer_SOURCES += driver-bf1.c
+bfgminer_SOURCES += driver-bf1.c driver-bf1.h
 endif
 
 if HAS_ICARUS

+ 2 - 2
driver-bf1.c

@@ -404,8 +404,8 @@ static bool bf1_identify(struct cgpu_info *cgpu)
 
 //------------------------------------------------------------------------------
 struct device_drv bf1_drv = {
-	.dname = "Bitfury BF1",
-	.name = "BF1",
+	.dname = "bf1",
+	.name = "BFA",
 	.minerloop = hash_queued_work,
 
 	.drv_detect = bf1_detect,