Lines Matching refs:tuners
64 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners; in cs_dbs_update()
168 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners; in up_threshold_store()
184 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners; in down_threshold_store()
227 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners; in freq_step_store()
288 struct cs_dbs_tuners *tuners; in cs_init() local
290 tuners = kzalloc(sizeof(*tuners), GFP_KERNEL); in cs_init()
291 if (!tuners) in cs_init()
294 tuners->down_threshold = DEF_FREQUENCY_DOWN_THRESHOLD; in cs_init()
295 tuners->freq_step = DEF_FREQUENCY_STEP; in cs_init()
299 dbs_data->tuners = tuners; in cs_init()
306 kfree(dbs_data->tuners); in cs_exit()