]> sigrok.org Git - libsigrok.git/commitdiff
dmm/eev121gw: visibility nits (single display parse routine)
authorGerhard Sittig <redacted>
Mon, 17 Jun 2019 20:40:26 +0000 (22:40 +0200)
committerGerhard Sittig <redacted>
Thu, 20 Jun 2019 14:45:36 +0000 (16:45 +0200)
The EEVBlog 121GW meter support always registers the three-displays
parse routine with the serial-dmm device driver. The single-display
routine need not be public. Adjust the visibility.

Reduce indentation for a continued line in a nearby declaration
while we are here.

src/dmm/eev121gw.c
src/libsigrok-internal.h

index 7361928a6a40ea3471424f43d34eb8165a0867be..f1a0070ae84fbe4e837949f31ec91be365bdae3c 100644 (file)
@@ -691,7 +691,7 @@ SR_PRIV gboolean sr_eev121gw_packet_valid(const uint8_t *buf)
  * @return SR_OK upon success, SR_ERR upon failure. Upon errors, the
  *         'analog' variable contents are undefined and should not be used.
  */
-SR_PRIV int sr_eev121gw_parse(const uint8_t *buf, float *floatval,
+static int sr_eev121gw_parse(const uint8_t *buf, float *floatval,
                struct sr_datafeed_analog *analog, void *info)
 {
        struct eev121gw_info *info_local;
index a1e2f2e4bf35eb1590e40450e588a91bc83dbe2b..20674cdfedfe3b30d5109e287319520ee033c648 100644 (file)
@@ -1732,10 +1732,8 @@ struct eev121gw_info {
 
 extern SR_PRIV const char *eev121gw_channel_formats[];
 SR_PRIV gboolean sr_eev121gw_packet_valid(const uint8_t *buf);
-SR_PRIV int sr_eev121gw_parse(const uint8_t *buf, float *floatval,
-                            struct sr_datafeed_analog *analog, void *info);
 SR_PRIV int sr_eev121gw_3displays_parse(const uint8_t *buf, float *floatval,
-                            struct sr_datafeed_analog *analog, void *info);
+               struct sr_datafeed_analog *analog, void *info);
 
 /*--- scale/kern.c ----------------------------------------------------------*/