Lines Matching refs:tuners
67 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners; in cs_dbs_update()
167 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners; in store_up_threshold()
183 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners; in store_down_threshold()
226 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners; in store_freq_step()
286 struct cs_dbs_tuners *tuners; in cs_init() local
288 tuners = kzalloc(sizeof(*tuners), GFP_KERNEL); in cs_init()
289 if (!tuners) in cs_init()
292 tuners->down_threshold = DEF_FREQUENCY_DOWN_THRESHOLD; in cs_init()
293 tuners->freq_step = DEF_FREQUENCY_STEP; in cs_init()
297 dbs_data->tuners = tuners; in cs_init()
304 kfree(dbs_data->tuners); in cs_exit()