From b295fa5190b5c75d37d66de84a0884e46a23d78e Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Thu, 2 Mar 2017 20:20:19 +0100 Subject: [PATCH] lecroy-xstream: Drop prototypes for non-existing functions. --- src/hardware/lecroy-xstream/protocol.c | 6 ------ src/hardware/lecroy-xstream/protocol.h | 1 - 2 files changed, 7 deletions(-) diff --git a/src/hardware/lecroy-xstream/protocol.c b/src/hardware/lecroy-xstream/protocol.c index 61a385c3..b4fae5bf 100644 --- a/src/hardware/lecroy-xstream/protocol.c +++ b/src/hardware/lecroy-xstream/protocol.c @@ -23,12 +23,6 @@ #include "scpi.h" #include "protocol.h" -SR_PRIV void lecroy_queue_logic_data(struct dev_context *devc, - size_t group, GByteArray *pod_data); -SR_PRIV void lecroy_send_logic_packet(struct sr_dev_inst *sdi, - struct dev_context *devc); -SR_PRIV void lecroy_cleanup_logic_data(struct dev_context *devc); - struct lecroy_wavedesc_2_x { uint16_t comm_type; uint16_t comm_order; /* 1 - little endian */ diff --git a/src/hardware/lecroy-xstream/protocol.h b/src/hardware/lecroy-xstream/protocol.h index 13536843..3cec9298 100644 --- a/src/hardware/lecroy-xstream/protocol.h +++ b/src/hardware/lecroy-xstream/protocol.h @@ -100,7 +100,6 @@ SR_PRIV int lecroy_xstream_init_device(struct sr_dev_inst *sdi); SR_PRIV int lecroy_xstream_request_data(const struct sr_dev_inst *sdi); SR_PRIV int lecroy_xstream_receive_data(int fd, int revents, void *cb_data); -SR_PRIV struct scope_state *lecroy_xstream_state_new(struct scope_config *config); SR_PRIV void lecroy_xstream_state_free(struct scope_state *state); SR_PRIV int lecroy_xstream_state_get(struct sr_dev_inst *sdi); SR_PRIV int lecroy_xstream_update_sample_rate(const struct sr_dev_inst *sdi);