From: Uwe Hermann Date: Sun, 25 Mar 2012 13:20:55 +0000 (+0200) Subject: sr: fx2lafw: Cosmetics. X-Git-Tag: libsigrok-0.1.0~21 X-Git-Url: http://sigrok.org/gitweb/?a=commitdiff_plain;h=f4a9e5c0aa81738d26e7893d6cf47ebdb4a91047;p=libsigrok.git sr: fx2lafw: Cosmetics. --- diff --git a/hardware/fx2lafw/command.c b/hardware/fx2lafw/command.c index b3d3b6b6..07f6b4ad 100644 --- a/hardware/fx2lafw/command.c +++ b/hardware/fx2lafw/command.c @@ -18,20 +18,18 @@ */ #include - #include "command.h" #include "sigrok.h" #include "sigrok-internal.h" int command_start_acquisition(libusb_device_handle *devhdl, - uint64_t samplerate) + uint64_t samplerate) { struct cmd_start_acquisition cmd; - int delay = 0; + int delay = 0, ret; - /* Compute the sample rate */ - if((SR_MHZ(48) % samplerate) == 0) - { + /* Compute the sample rate. */ + if((SR_MHZ(48) % samplerate) == 0) { cmd.flags = CMD_START_FLAGS_CLK_48MHZ; delay = SR_MHZ(48) / samplerate - 1; } else if((SR_MHZ(30) % samplerate) == 0) { @@ -39,24 +37,20 @@ int command_start_acquisition(libusb_device_handle *devhdl, delay = SR_MHZ(30) / samplerate - 1; } - /* Note that sample_delay=0 is treated as sample_delay=256 */ + /* Note: sample_delay=0 is treated as sample_delay=256. */ if (delay <= 0 || delay > 256) { - sr_err("fx2lafw: Unable to sample at %dHz", - samplerate); + sr_err("fx2lafw: Unable to sample at %dHz", samplerate); return SR_ERR; } cmd.sample_delay = delay; - /* Send the control message */ - const int res = libusb_control_transfer(devhdl, - LIBUSB_REQUEST_TYPE_VENDOR | - LIBUSB_ENDPOINT_OUT, CMD_START, 0x0000, - 0x0000, (unsigned char*)&cmd, - sizeof(cmd), 100); - if (res < 0) { - sr_err("fx2lafw: Unable to send start command: %d", - res); + /* Send the control message. */ + ret = libusb_control_transfer(devhdl, LIBUSB_REQUEST_TYPE_VENDOR | + LIBUSB_ENDPOINT_OUT, CMD_START, 0x0000, 0x0000, + (unsigned char *)&cmd, sizeof(cmd), 100); + if (ret < 0) { + sr_err("fx2lafw: Unable to send start command: %d", ret); return SR_ERR; } diff --git a/hardware/fx2lafw/command.h b/hardware/fx2lafw/command.h index 929118a0..23e25039 100644 --- a/hardware/fx2lafw/command.h +++ b/hardware/fx2lafw/command.h @@ -18,8 +18,8 @@ */ /* Protocol commands */ -#define CMD_GET_FW_VERSION 0xb0 -#define CMD_START 0xb1 +#define CMD_GET_FW_VERSION 0xb0 +#define CMD_START 0xb1 #define CMD_START_FLAGS_CLK_SRC_POS 6 @@ -28,8 +28,7 @@ #pragma pack(push, 1) -struct cmd_start_acquisition -{ +struct cmd_start_acquisition { uint8_t flags; uint8_t sample_delay; }; @@ -37,4 +36,4 @@ struct cmd_start_acquisition #pragma pack(pop) int command_start_acquisition(libusb_device_handle *devhdl, - uint64_t samplerate); + uint64_t samplerate); diff --git a/hardware/fx2lafw/fx2lafw.c b/hardware/fx2lafw/fx2lafw.c index ed95fd2b..49c85651 100644 --- a/hardware/fx2lafw/fx2lafw.c +++ b/hardware/fx2lafw/fx2lafw.c @@ -343,13 +343,13 @@ static int hw_init(const char *deviceinfo) } /* Skip if the device was not found */ - if(!fx2lafw_prof) + if (!fx2lafw_prof) continue; sdi = sr_dev_inst_new(devcnt, SR_ST_INITIALIZING, fx2lafw_prof->vendor, fx2lafw_prof->model, fx2lafw_prof->model_version); - if(!sdi) + if (!sdi) return 0; ctx = fx2lafw_device_new(); @@ -460,7 +460,7 @@ static int hw_cleanup(void) struct context *ctx; int ret = SR_OK; - for(l = dev_insts; l; l = l->next) { + for (l = dev_insts; l; l = l->next) { if (!(sdi = l->data)) { /* Log error, but continue cleaning up the rest. */ sr_err("fx2lafw: %s: sdi was NULL, continuing", __func__); @@ -482,7 +482,7 @@ static int hw_cleanup(void) g_slist_free(dev_insts); dev_insts = NULL; - if(usb_context) + if (usb_context) libusb_exit(usb_context); usb_context = NULL; @@ -810,7 +810,7 @@ static int hw_dev_acquisition_stop(int dev_index, void *cb_data) { struct sr_dev_inst *sdi; - /* unused parameter */ + /* Avoid compiler warnings. */ (void)cb_data; if (!(sdi = sr_dev_inst_get(dev_insts, dev_index)))