session_driver.c: Allow querying of SR_CONF_CAPTURE_UNITSIZE.
This commit is contained in:
parent
6508992d04
commit
3f2cd87f36
|
@ -216,13 +216,17 @@ static int config_get(uint32_t key, GVariant **data, const struct sr_dev_inst *s
|
||||||
|
|
||||||
(void)cg;
|
(void)cg;
|
||||||
|
|
||||||
|
if (!sdi)
|
||||||
|
return SR_ERR;
|
||||||
|
|
||||||
|
vdev = sdi->priv;
|
||||||
|
|
||||||
switch (key) {
|
switch (key) {
|
||||||
case SR_CONF_SAMPLERATE:
|
case SR_CONF_SAMPLERATE:
|
||||||
if (sdi) {
|
*data = g_variant_new_uint64(vdev->samplerate);
|
||||||
vdev = sdi->priv;
|
break;
|
||||||
*data = g_variant_new_uint64(vdev->samplerate);
|
case SR_CONF_CAPTURE_UNITSIZE:
|
||||||
} else
|
*data = g_variant_new_uint64(vdev->unitsize);
|
||||||
return SR_ERR;
|
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
return SR_ERR_NA;
|
return SR_ERR_NA;
|
||||||
|
|
Loading…
Reference in New Issue