]> sigrok.org Git - libsigrok.git/commitdiff
binary helpers: address minor style nits, break long text lines
authorGerhard Sittig <redacted>
Sun, 5 Mar 2023 10:16:58 +0000 (11:16 +0100)
committerGerhard Sittig <redacted>
Sun, 5 Mar 2023 10:16:58 +0000 (11:16 +0100)
Break long text lines in source code files, and break them in more
appropriate locations (keep groups of related function parameters).

src/binary_helpers.c
src/libsigrok-internal.h

index 86c4c5838fce2bf470524bd3c2a0b8859a741514..a15f5cfba8acf978697096b0258961918409fb27 100644 (file)
@@ -22,7 +22,8 @@
 #include <libsigrok/libsigrok.h>
 #include "libsigrok-internal.h"
 
-SR_PRIV int bv_get_value(float *out, const struct binary_value_spec *spec, const void *data, size_t length)
+SR_PRIV int bv_get_value(float *out, const struct binary_value_spec *spec,
+       const void *data, size_t length)
 {
        float value;
 
@@ -59,8 +60,9 @@ SR_PRIV int bv_get_value(float *out, const struct binary_value_spec *spec, const
        return SR_OK;
 }
 
-SR_PRIV int bv_send_analog_channel(const struct sr_dev_inst *sdi, struct sr_channel *ch,
-                                  const struct binary_analog_channel *bac, const void *data, size_t length)
+SR_PRIV int bv_send_analog_channel(const struct sr_dev_inst *sdi,
+       struct sr_channel *ch, const struct binary_analog_channel *bac,
+       const void *data, size_t length)
 {
        int err;
        struct sr_analog_encoding encoding;
index e1cae55993cf67501e9466342752f751866992b5..20bdf98c22bca1aead81e076d8c4e15f4b0cbc48 100644 (file)
@@ -2194,7 +2194,8 @@ struct binary_analog_channel {
  * @param length Size of binary blob
  * @return SR_OK on success, SR_ERR_* error code on failure.
  */
-SR_PRIV int bv_get_value(float *out, const struct binary_value_spec *spec, const void *data, size_t length);
+SR_PRIV int bv_get_value(float *out, const struct binary_value_spec *spec,
+       const void *data, size_t length);
 
 /**
  * Send an analog channel packet based on a binary analog channel
@@ -2207,8 +2208,9 @@ SR_PRIV int bv_get_value(float *out, const struct binary_value_spec *spec, const
  * @param length Size of binary blob
  * @return SR_OK on success, SR_ERR_* error code on failure.
  */
-SR_PRIV int bv_send_analog_channel(const struct sr_dev_inst *sdi, struct sr_channel *ch,
-                                  const struct binary_analog_channel *spec, const void *data, size_t length);
+SR_PRIV int bv_send_analog_channel(const struct sr_dev_inst *sdi,
+       struct sr_channel *ch, const struct binary_analog_channel *spec,
+       const void *data, size_t length);
 
 /*--- crc.c -----------------------------------------------------------------*/