From 0d6763462bca7b7012393d2c5d6a1eff5631f66a Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Sun, 5 Aug 2012 16:15:32 +1000 Subject: [PATCH] Style cleanups. --- driver-bitforce.c | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/driver-bitforce.c b/driver-bitforce.c index c9926deb..66a4095e 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';