Commit 0649972f69e9a50030092d592e5ad3ea5440bd81

nelisky 2012-04-16T12:29:24

ztex detect was broken due to bad branch split

diff --git a/ztex.c b/ztex.c
index 52171e5..56897f4 100644
--- a/ztex.c
+++ b/ztex.c
@@ -41,13 +41,6 @@ static void ztex_detect()
   int cnt;
   int i;
   struct libztex_dev_list **ztex_devices;
-  struct cgpu_info *ztex;
-
-  ztex = calloc(1, sizeof(struct cgpu_info));
-  ztex->api = &ztex_hotplug_api;
-  ztex->threads = 1;
-  devices[total_devices++] = ztex;
-  
 
   cnt = libztex_scanDevices(&ztex_devices);
   applog(LOG_WARNING, "Found %d ztex board(s)", cnt);
@@ -55,6 +48,7 @@ static void ztex_detect()
   for (i=0; i<cnt; i++) {
     if (total_devices == MAX_DEVICES)
       break;
+    struct cgpu_info *ztex;
     ztex = calloc(1, sizeof(struct cgpu_info));
     ztex->api = &ztex_api;
     ztex->device_id = total_devices;