Lines Matching full:tuners
64 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners; in cs_dbs_update()
166 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners; in store_up_threshold()
182 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners; in store_down_threshold()
225 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners; in store_freq_step()
285 struct cs_dbs_tuners *tuners; in cs_init() local
287 tuners = kzalloc(sizeof(*tuners), GFP_KERNEL); in cs_init()
288 if (!tuners) in cs_init()
291 tuners->down_threshold = DEF_FREQUENCY_DOWN_THRESHOLD; in cs_init()
292 tuners->freq_step = DEF_FREQUENCY_STEP; in cs_init()
296 dbs_data->tuners = tuners; in cs_init()
303 kfree(dbs_data->tuners); in cs_exit()