Commit c2ef8ca6f5468aa962287f727ddbeed97d006907

Con Kolivas 2013-09-21T18:00:06

Enable usb buffering on hashfast during init.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff --git a/driver-hashfast.c b/driver-hashfast.c
index 9e75c6a..bd6319a 100644
--- a/driver-hashfast.c
+++ b/driver-hashfast.c
@@ -317,8 +317,9 @@ static struct api_data *hashfast_api_stats(struct cgpu_info __maybe_unused *cgpu
 	return NULL;
 }
 
-static void hashfast_init(struct cgpu_info __maybe_unused *hashfast)
+static void hashfast_init(struct cgpu_info *hashfast)
 {
+	usb_buffer_enable(hashfast);
 }
 
 static void hashfast_shutdown(struct thr_info __maybe_unused *thr)