Browse Source

Increase upper limit on number of extra items to queue as some FPGA code can't yet reliably keep many devices busy.

Con Kolivas 13 years ago
parent
commit
99331991ba
1 changed files with 2 additions and 2 deletions
  1. 2 2
      cgminer.c

+ 2 - 2
cgminer.c

@@ -783,8 +783,8 @@ static struct opt_table opt_config_table[] = {
 			opt_set_bool, &opt_protocol,
 			opt_set_bool, &opt_protocol,
 			"Verbose dump of protocol-level activities"),
 			"Verbose dump of protocol-level activities"),
 	OPT_WITH_ARG("--queue|-Q",
 	OPT_WITH_ARG("--queue|-Q",
-		     set_int_0_to_10, opt_show_intval, &opt_queue,
-		     "Minimum number of work items to have queued (0 - 10)"),
+		     set_int_0_to_9999, opt_show_intval, &opt_queue,
+		     "Minimum number of work items to have queued (0+)"),
 	OPT_WITHOUT_ARG("--quiet|-q",
 	OPT_WITHOUT_ARG("--quiet|-q",
 			opt_set_bool, &opt_quiet,
 			opt_set_bool, &opt_quiet,
 			"Disable logging output, display status and errors"),
 			"Disable logging output, display status and errors"),