Various drivers: Drop some unneeded lines.

This commit is contained in:
Uwe Hermann 2014-03-25 21:35:31 +01:00
parent 0bcfc9dcd8
commit 8bd3daa48a
5 changed files with 1 additions and 16 deletions

View File

@ -405,8 +405,6 @@ static int dev_acquisition_start(const struct sr_dev_inst *sdi, void *cb_data)
static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
{
(void)cb_data;
if (sdi->status != SR_ST_ACTIVE)
return SR_ERR_DEV_CLOSED;

View File

@ -428,14 +428,10 @@ static int config_get(int key, GVariant **data, const struct sr_dev_inst *sdi,
int ret;
struct dev_context *devc;
(void)sdi;
(void)data;
(void)cg;
ret = SR_OK;
(void)cg;
if (!sdi || !(devc = sdi->priv))
return SR_ERR_ARG;
@ -447,7 +443,6 @@ static int config_get(int key, GVariant **data, const struct sr_dev_inst *sdi,
case SR_CONF_LIMIT_MSEC:
*data = g_variant_new_uint64(devc->limit_msec);
break;
case SR_CONF_POWER_OFF:
*data = g_variant_new_boolean(FALSE);
break;
@ -481,8 +476,6 @@ static int config_list_common(int key, GVariant **data, const struct sr_dev_inst
static int config_list_sm(int key, GVariant **data, const struct sr_dev_inst *sdi,
const struct sr_channel_group *cg)
{
(void)sdi;
switch (key) {
case SR_CONF_DEVICE_OPTIONS:
*data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
@ -499,8 +492,6 @@ static int config_list_sm(int key, GVariant **data, const struct sr_dev_inst *sd
static int config_list_bd(int key, GVariant **data, const struct sr_dev_inst *sdi,
const struct sr_channel_group *cg)
{
(void)sdi;
switch (key) {
case SR_CONF_DEVICE_OPTIONS:
*data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,

View File

@ -250,9 +250,6 @@ static int dev_acquisition_start(const struct sr_dev_inst *sdi,
struct dev_context *devc;
struct sr_serial_dev_inst *serial;
(void)sdi;
(void)cb_data;
if (!sdi || !cb_data || !(devc = sdi->priv))
return SR_ERR_BUG;

View File

@ -257,8 +257,6 @@ static int dev_open(struct sr_dev_inst *sdi, int dmm)
static int dev_close(struct sr_dev_inst *sdi)
{
(void)sdi;
/* TODO */
sdi->status = SR_ST_INACTIVE;

View File

@ -203,6 +203,7 @@ SR_PRIV int uni_t_ut32x_handle_events(int fd, int revents, void *cb_data)
(void)fd;
(void)revents;
drvc = di->priv;
if (!(sdi = cb_data))