]> sigrok.org Git - libsigrok.git/blobdiff - src/input/raw_analog.c
Factor out std_session_send_df_end() helper.
[libsigrok.git] / src / input / raw_analog.c
index a72cbd024b2c6b1cc141eb0b1c57e7cb690ee71f..f05ca5b8c50116a85e48f081263e7640634593f3 100644 (file)
@@ -48,11 +48,11 @@ struct context {
 };
 
 struct sample_format {
-       const char const *fmt_name;
+       const char *fmt_name;
        struct sr_analog_encoding encoding;
 };
 
-static const struct sample_format const sample_formats[] =
+static const struct sample_format sample_formats[] =
 {
        { "S8",         { 1, TRUE,  FALSE, FALSE, 0, TRUE, { 1,                     128}, { 0, 1}}},
        { "U8",         { 1, FALSE, FALSE, FALSE, 0, TRUE, { 1,                     255}, {-1, 2}}},
@@ -217,7 +217,6 @@ static int receive(struct sr_input *in, GString *buf)
 
 static int end(struct sr_input *in)
 {
-       struct sr_datafeed_packet packet;
        struct context *inc;
        int ret;
 
@@ -227,10 +226,8 @@ static int end(struct sr_input *in)
                ret = SR_OK;
 
        inc = in->priv;
-       if (inc->started) {
-               packet.type = SR_DF_END;
-               sr_session_send(in->sdi, &packet);
-       }
+       if (inc->started)
+               std_session_send_df_end(in->sdi, LOG_PREFIX);
 
        return ret;
 }