Lines Matching full:treble
66 /* bass/treble cluster */
68 struct v4l2_ctrl *treble; member
104 #define TDA7432_TN 0x02 /* Bass, Treble (Tone) */
155 /* Bits 0,1,2 control absolute treble gain from 0dB to 14dB
158 * Bit 3 controls treble attenuation/gain (sign)
171 * 1 1 0 1 0 1 0 1 is +4dB bass, -4dB treble
275 u8 bass, treble, volume; in tda7432_s_ctrl() local
314 treble = t->treble->val; in tda7432_s_ctrl()
317 if (treble >= 0x8) in tda7432_s_ctrl()
318 treble = 14 - (treble - 8); in tda7432_s_ctrl()
320 tda7432_write(sd, TDA7432_TN, 0x10 | (bass << 4) | treble); in tda7432_s_ctrl()
368 t->treble = v4l2_ctrl_new_std(&t->hdl, &tda7432_ctrl_ops, in tda7432_probe()