Style cleanups.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
diff --git a/driver-bitforce.c b/driver-bitforce.c
index c9926de..66a4095 100644
--- a/driver-bitforce.c
+++ b/driver-bitforce.c
@@ -150,8 +150,7 @@ static char bitforce_autodetect_ftdi()
FT_STATUS ftStatus;
DWORD numDevs;
HMODULE dll = LoadLibrary("FTD2XX.DLL");
- if (!dll)
- {
+ if (!dll) {
applog(LOG_DEBUG, "FTD2XX.DLL failed to load, not using FTDI bitforce autodetect");
return 0;
}
@@ -161,8 +160,7 @@ static char bitforce_autodetect_ftdi()
LOAD_SYM(FT_Close);
ftStatus = FT_ListDevices(&numDevs, NULL, FT_LIST_NUMBER_ONLY);
- if (ftStatus != FT_OK)
- {
+ if (ftStatus != FT_OK) {
applog(LOG_DEBUG, "FTDI device count failed, not using FTDI bitforce autodetect");
nogood:
dlclose(dll);
@@ -177,8 +175,7 @@ nogood:
bufptrs[i] = &buf[i * 65];
bufptrs[numDevs] = NULL;
ftStatus = FT_ListDevices(bufptrs, &numDevs, FT_LIST_ALL | FT_OPEN_BY_DESCRIPTION);
- if (ftStatus != FT_OK)
- {
+ if (ftStatus != FT_OK) {
applog(LOG_DEBUG, "FTDI device list failed, not using FTDI bitforce autodetect");
goto nogood;
}
@@ -186,8 +183,7 @@ nogood:
char devpath[] = "\\\\.\\COMnnnnn";
char *devpathnum = &devpath[7];
char found = 0;
- for (i = numDevs; i > 0; )
- {
+ for (i = numDevs; i > 0; ) {
--i;
bufptrs[i][64] = '\0';