Lines Matching refs:value
87 * tx map value is a bitfield where each bit represents a FW channel
99 * rx map value is a bitfield where each bit represents a slot
141 uinfo->value.enumerated.items = e->max;
143 if (uinfo->value.enumerated.item > e->max - 1)
144 uinfo->value.enumerated.item = e->max - 1;
145 strcpy(uinfo->value.enumerated.name,
146 e->texts[uinfo->value.enumerated.item]);
157 * an enumerated control, there is only one possible value.
177 ucontrol->value.enumerated.item[0] = mux;
210 * Instead of the enum value being the value written to the register, it is the
211 * register address; and the kcontrol number (register num) is the value written
212 * to the register. This is so that there can be only one value for each
234 mux = ucontrol->value.enumerated.item[0];
337 memcpy(ucontrol->value.bytes.data, bc->params, bc->max);
360 memcpy(bc->params, ucontrol->value.bytes.data, bc->max);
383 uinfo->value.integer.min = mc->min;
384 uinfo->value.integer.max = mc->max;
392 * @gv:the stored value of gain (also contains rampduration)
403 * The user-set gain value is sent only if the user-controllable 'mute' control
404 * is OFF (indicated by gv->mute). Otherwise, the mute value (MIN value) is
448 ucontrol->value.integer.value[0] = gv->l_gain;
449 ucontrol->value.integer.value[1] = gv->r_gain;
453 ucontrol->value.integer.value[0] = gv->mute ? 0 : 1;
457 ucontrol->value.integer.value[0] = gv->ramp_duration;
482 gv->l_gain = ucontrol->value.integer.value[0];
483 gv->r_gain = ucontrol->value.integer.value[1];
489 gv->mute = !ucontrol->value.integer.value[0];
494 gv->ramp_duration = ucontrol->value.integer.value[0];
562 * @reg: the register value is a bit-field inicated which mixer inputs are ON.