Commit 5ab2f3a7cfb8a5868e37860c362e786b8760d2c5

Kano 2012-12-17T13:35:14

MMQ style police

diff --git a/driver-modminer.c b/driver-modminer.c
index f95c031..832b854 100644
--- a/driver-modminer.c
+++ b/driver-modminer.c
@@ -805,8 +805,7 @@ static void check_temperature(struct thr_info *thr)
 
 	mutex_lock(modminer->modminer_mutex);
 	if (usb_write(modminer, (char *)cmd, 2, &amount, C_REQUESTTEMPERATURE) == 0 && amount == 2 &&
-	    usb_read(modminer, (char *)(&temperature), tbytes, &tamount, C_GETTEMPERATURE) == 0 && tamount == tbytes)
-	{
+	    usb_read(modminer, (char *)(&temperature), tbytes, &tamount, C_GETTEMPERATURE) == 0 && tamount == tbytes) {
 		mutex_unlock(modminer->modminer_mutex);
 		if (state->one_byte_temp)
 			modminer->temp = temperature[0];
@@ -992,8 +991,7 @@ tryagain:
 		if (work_restart(thr))
 			break;
 
-		if (state->overheated == true)
-		{
+		if (state->overheated == true) {
 			// don't check every time
 			if (++temploop > 30) {
 				check_temperature(thr);