Lines Matching refs:tnctrl
111 u16 tnctrl; /* TNCTRL1 & TNCTRL2 */ member
128 __be16 tnctrl; /* TNCTRL1 & TNCTRL2 */ member
186 wr.tnctrl = __cpu_to_be16(r->tnctrl); in tea5764_i2c_write()
199 if (!(r->tnctrl & TEA5764_TNCTRL_PUPD0)) { in tea5764_power_up()
200 r->tnctrl &= ~(TEA5764_TNCTRL_AFM | TEA5764_TNCTRL_MU | in tea5764_power_up()
207 r->tnctrl |= TEA5764_TNCTRL_PUPD0; in tea5764_power_up()
216 if (r->tnctrl & TEA5764_TNCTRL_PUPD0) { in tea5764_power_down()
217 r->tnctrl &= ~TEA5764_TNCTRL_PUPD0; in tea5764_power_down()
227 if (r->tnctrl & TEA5764_TNCTRL_HLSI) in tea5764_set_freq()
237 if (r->tnctrl & TEA5764_TNCTRL_HLSI) in tea5764_get_freq()
254 int tnctrl = r->tnctrl; in tea5764_set_audout_mode() local
257 r->tnctrl |= TEA5764_TNCTRL_MST; in tea5764_set_audout_mode()
259 r->tnctrl &= ~TEA5764_TNCTRL_MST; in tea5764_set_audout_mode()
260 if (tnctrl != r->tnctrl) in tea5764_set_audout_mode()
268 if (r->tnctrl & TEA5764_TNCTRL_MST) in tea5764_get_audout_mode()
277 int tnctrl = r->tnctrl; in tea5764_mute() local
280 r->tnctrl |= TEA5764_TNCTRL_MU; in tea5764_mute()
282 r->tnctrl &= ~TEA5764_TNCTRL_MU; in tea5764_mute()
283 if (tnctrl != r->tnctrl) in tea5764_mute()
375 if (r->tnctrl & TEA5764_TNCTRL_PUPD0) in vidioc_g_frequency()