Lines Matching defs:value
94 u8 burst_bclkdiv; /* BCLK divider value in burst mode */
172 u8 reg, u8 value)
179 cache[reg] = value;
183 u8 *value)
188 *value = reg & 0xff;
190 /* If powered off, return the cached value */
192 val = i2c_smbus_read_byte_data(dac33->i2c, value[0]);
195 value[0] = dac33_read_reg_cache(component, reg);
198 value[0] = val;
202 value[0] = dac33_read_reg_cache(component, reg);
209 unsigned int value)
221 data[1] = value & 0xff;
236 unsigned int value)
242 ret = dac33_write(component, reg, value);
250 unsigned int value)
263 data[1] = (value >> 8) & 0xff;
264 data[2] = value & 0xff;
437 ucontrol->value.enumerated.item[0] = dac33->fifo_mode;
449 if (dac33->fifo_mode == ucontrol->value.enumerated.item[0])
455 if (ucontrol->value.enumerated.item[0] >= DAC33_FIFO_LAST_MODE)
458 dac33->fifo_mode = ucontrol->value.enumerated.item[0];