Commit 9cad36008de695be201a56aa8d56544b1b3eb4df

kanoi 2013-12-22T23:07:28

Merge pull request #531 from kanoi/master drillbit asic - enable in api.c

diff --git a/api.c b/api.c
index bd55c5b..528f10d 100644
--- a/api.c
+++ b/api.c
@@ -25,7 +25,7 @@
 #include "miner.h"
 #include "util.h"
 
-#if defined(USE_BFLSC) || defined(USE_AVALON) || defined(USE_HASHFAST) || defined(USE_BITFURY) || defined(USE_KLONDIKE) || defined(USE_KNC) || defined(USE_BAB)
+#if defined(USE_BFLSC) || defined(USE_AVALON) || defined(USE_HASHFAST) || defined(USE_BITFURY) || defined(USE_KLONDIKE) || defined(USE_KNC) || defined(USE_BAB) || defined(USE_DRILLBIT)
 #define HAVE_AN_ASIC 1
 #endif
 
@@ -168,6 +168,9 @@ static const char *DEVICECODE = ""
 #ifdef USE_HASHFAST
 			"HFA "
 #endif
+#ifdef USE_DRILLBIT
+			"DRB "
+#endif
 #ifdef USE_ICARUS
 			"ICA "
 #endif