Browse Source

whitespace cleanup

Xiangfu 13 years ago
parent
commit
3da28f893d
2 changed files with 73 additions and 73 deletions
  1. 72 72
      driver-avalon.c
  2. 1 1
      driver-avalon.h

+ 72 - 72
driver-avalon.c

@@ -49,6 +49,77 @@ static int option_offset = -1;
 static struct AVALON_INFO **avalon_info;
 struct device_api avalon_api;
 
+static int avalon_init_task(struct avalon_task *at,
+			    uint8_t reset, uint8_t ff, uint8_t fan,
+			    uint8_t timeout, uint8_t chip_num,
+			    uint8_t miner_num)
+{
+	if (!at)
+		return -1;
+
+	memset(at, 0, sizeof(struct avalon_task));
+
+	at->reset = reset ? 1 : 0;
+	at->flush_fifo = ff ? 1: 0;
+
+	at->fan_eft = fan ? 1 : 0;	/* 1: fan_pwm_data */
+	at->fan_pwm_data = fan ? (0xFF & fan) : 0xFF;	/* by default: 0xFF */
+
+	/* 1: timeout_data miner_num, chip_num */
+	at->timer_eft = timeout ? 1 : 0;
+	at->timer_eft = chip_num ? 1 : 0;
+	at->timer_eft = miner_num ? 1 : 0;
+
+	at->timeout_data = timeout ? timeout : 0x27; 	/* by default: 0x27 */
+	at->chip_num = chip_num ? chip_num : 0xA;	/* by default: 0x0A */
+	at->miner_num = miner_num ? miner_num : 0x18;	/* by default: 0x18 */
+
+	/* FIXME: Not support nonce range yet */
+	at->nonce_elf = 0;	/* 1: nonce_range*/
+
+	if (opt_debug) {
+		applog(LOG_DEBUG, "Avalon: Task:");
+		hexdump((uint8_t *)at, sizeof(struct avalon_task));
+	}
+
+	return 0;
+}
+
+static inline void avalon_create_task(struct avalon_task *at, struct work *work)
+{
+	memcpy(at->midstate, work->midstate, 32);
+	rev((uint8_t *)at->midstate, 32);
+
+	memcpy(at->data, work->data + 64, 12);
+	rev((uint8_t *)at->data, 12);
+
+	if (opt_debug) {
+		applog(LOG_DEBUG, "Avalon: Task + work:");
+		hexdump((uint8_t *)at, sizeof(struct avalon_task));
+	}
+}
+
+static int avalon_send_task(int fd, const struct avalon_task *at)
+{
+	size_t ret;
+	struct timespec p;
+
+	if (opt_debug) {
+		applog(LOG_DEBUG, "Avalon: Sent:");
+		hexdump((uint8_t *)at, sizeof(struct avalon_task));
+	}
+
+	ret = write(fd, (uint8_t *)at, AVALON_WRITE_SIZE);
+	if (unlikely(ret != AVALON_WRITE_SIZE))
+		return AVA_SEND_ERROR;
+
+	p.tv_sec = 0;
+	p.tv_nsec = AVALON_SEND_WORK_PITCH;
+	nanosleep(&p, NULL);
+
+	return AVA_SEND_OK;
+}
+
 static int avalon_gets(uint8_t *buf, int fd, struct timeval *tv_finish,
 		       struct thr_info *thr, int read_count)
 {
@@ -143,77 +214,6 @@ static int avalon_decode_nonce(struct work **work, uint32_t *nonce,
 	return i;
 }
 
-static int avalon_init_task(struct avalon_task *at,
-			    uint8_t reset, uint8_t ff, uint8_t fan,
-			    uint8_t timeout, uint8_t chip_num,
-			    uint8_t miner_num)
-{
-	if (!at)
-		return -1;
-
-	memset(at, 0, sizeof(struct avalon_task));
-
-	at->reset = reset ? 1 : 0;
-	at->flush_fifo = ff ? 1: 0;
-
-	at->fan_eft = fan ? 1 : 0;	/* 1: fan_pwm_data */
-	at->fan_pwm_data = fan ? (0xFF & fan) : 0xFF;	/* by default: 0xFF */
-
-	/* 1: timeout_data miner_num, chip_num */
-	at->timer_eft = timeout ? 1 : 0;
-	at->timer_eft = chip_num ? 1 : 0;
-	at->timer_eft = miner_num ? 1 : 0;
-
-	at->timeout_data = timeout ? timeout : 0x27; 	/* by default: 0x27 */
-	at->chip_num = chip_num ? chip_num : 0xA;	/* by default: 0x0A */
-	at->miner_num = miner_num ? miner_num : 0x18;	/* by default: 0x18 */
-
-	/* FIXME: Not support nonce range yet */
-	at->nonce_elf = 0;	/* 1: nonce_range*/
-	
-	if (opt_debug) {
-		applog(LOG_DEBUG, "Avalon: Task:");
-		hexdump((uint8_t *)at, sizeof(struct avalon_task));
-	}
-
-	return 0;
-}
-
-static inline void avalon_create_task(struct avalon_task *at, struct work *work)
-{
-	memcpy(at->midstate, work->midstate, 32);
-	rev((uint8_t *)at->midstate, 32);
-
-	memcpy(at->data, work->data + 64, 12);
-	rev((uint8_t *)at->data, 12);
-
-	if (opt_debug) {
-		applog(LOG_DEBUG, "Avalon: Task + work:");
-		hexdump((uint8_t *)at, sizeof(struct avalon_task));
-	}
-}
-
-static int avalon_send_task(int fd, const struct avalon_task *at)
-{
-	size_t ret;
-	struct timespec p;
-
-	if (opt_debug) {
-		applog(LOG_DEBUG, "Avalon: Sent:");
-		hexdump((uint8_t *)at, sizeof(struct avalon_task));
-	}
-
-	ret = write(fd, (uint8_t *)at, AVALON_WRITE_SIZE);
-	if (unlikely(ret != AVALON_WRITE_SIZE))
-		return AVA_SEND_ERROR;
-
-	p.tv_sec = 0;
-	p.tv_nsec = AVALON_SEND_WORK_PITCH;
-	nanosleep(&p, NULL);
-
-	return AVA_SEND_OK;
-}
-
 static int avalon_reset(int fd)
 {
 	const char golden_nonce[] = "000187a2";
@@ -842,8 +842,8 @@ struct device_api avalon_api = {
 	.dname = "avalon",
 	.name = "AVA",
 	.api_detect = avalon_detect,
-	.get_api_stats = avalon_api_stats,
 	.thread_prepare = avalon_prepare,
 	.scanhash_queue = avalon_scanhash,
+	.get_api_stats = avalon_api_stats,
 	.thread_shutdown = avalon_shutdown,
 };

+ 1 - 1
driver-avalon.h

@@ -103,7 +103,7 @@ ASSERT1(sizeof(uint32_t) == 4);
 // i.e. 10 means 1/10 of a second
 #define TIME_FACTOR 10
 
-// It's 10 per second, thus value = 10/TIME_FACTOR = 
+// It's 10 per second, thus value = 10/TIME_FACTOR =
 #define AVALON_RESET_FAULT_DECISECONDS 1
 
 // In timing mode: Default starting value until an estimate can be obtained