aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPřemysl Eric Janouch <p@janouch.name>2024-12-26 12:26:19 +0100
committerPřemysl Eric Janouch <p@janouch.name>2024-12-26 12:26:19 +0100
commite53cddb030774765dec14ab120991fc775bc6959 (patch)
tree8f23edf3271f3bb6b3c651ddab6c97a05db2582f
parent8832ba22274540a406465ee96782393ab32faa5a (diff)
downloadusb-drivers-e53cddb030774765dec14ab120991fc775bc6959.tar.gz
usb-drivers-e53cddb030774765dec14ab120991fc775bc6959.tar.xz
usb-drivers-e53cddb030774765dec14ab120991fc775bc6959.zip
Fix up code style adjustments
-rw-r--r--elksmart-comm.c14
-rw-r--r--razer-bw-te-ctl.c8
2 files changed, 11 insertions, 11 deletions
diff --git a/elksmart-comm.c b/elksmart-comm.c
index 4d5d830..3aeec34 100644
--- a/elksmart-comm.c
+++ b/elksmart-comm.c
@@ -196,7 +196,7 @@ compress_value(unsigned value, struct str *encoded)
}
static void
-compress_pulses (const struct pulse *pulses, size_t len, struct str *encoded)
+compress_pulses(const struct pulse *pulses, size_t len, struct str *encoded)
{
unsigned counts[len];
memset(counts, 0, sizeof counts);
@@ -527,15 +527,15 @@ send_identify(libusb_device_handle *device, struct error **e)
#if 0
// The EKX4S does not respond to this request.
static uint8_t c_serial[] = { -5, -5, -5, -5 };
- if ((result = libusb_bulk_transfer (device, g.endpoint_out,
+ if ((result = libusb_bulk_transfer(device, g.endpoint_out,
c_serial, sizeof c_serial, &len, 100)))
- return error_set (e, "serial/send: %s", libusb_strerror (result));
- if ((result = libusb_bulk_transfer (device, g.endpoint_in,
+ return error_set(e, "serial/send: %s", libusb_strerror(result));
+ if ((result = libusb_bulk_transfer(device, g.endpoint_in,
buffer, sizeof buffer, &len, 100)))
- return error_set (e, "serial/recv: %s", libusb_strerror (result));
+ return error_set(e, "serial/recv: %s", libusb_strerror(result));
if (len < (int) sizeof c_serial ||
- memcmp (buffer, c_serial, sizeof c_serial))
- return error_set (e, "serial retrieval failed");
+ memcmp(buffer, c_serial, sizeof c_serial))
+ return error_set(e, "serial retrieval failed");
#endif
return true;
}
diff --git a/razer-bw-te-ctl.c b/razer-bw-te-ctl.c
index b56136c..e9e55cb 100644
--- a/razer-bw-te-ctl.c
+++ b/razer-bw-te-ctl.c
@@ -198,8 +198,8 @@ parse_options(int argc, char *argv[],
};
if (argc == 1) {
- show_usage (argv[0]);
- exit (EXIT_FAILURE);
+ show_usage(argv[0]);
+ exit(EXIT_FAILURE);
}
int c;
@@ -256,7 +256,7 @@ parse_options(int argc, char *argv[],
!strcasecmp(optarg, "on") ||
!strcasecmp(optarg, "yes")) {
new_config->gaming_mode = true;
- } else if (!strcasecmp (optarg, "false") ||
+ } else if (!strcasecmp(optarg, "false") ||
!strcasecmp(optarg, "off") ||
!strcasecmp(optarg, "no")) {
new_config->gaming_mode = false;
@@ -362,7 +362,7 @@ main(int argc, char *argv[])
if ((result = apply_options(device, &options, &new_config)))
FAIL(error_4, "operation failed: %s\n",
- libusb_error_name (result));
+ libusb_error_name(result));
error_4:
if ((result = libusb_release_interface(device, BW_CTL_IFACE)))
FAIL(error_3, "couldn't release interface: %s\n",