Lines Matching refs:tuners
52 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners; in cs_check_cpu()
113 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners; in cs_dbs_timer()
157 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners; in store_sampling_down_factor()
172 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners; in store_sampling_rate()
187 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners; in store_up_threshold()
202 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners; in store_down_threshold()
219 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners; in store_ignore_nice_load()
251 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners; in store_freq_step()
322 struct cs_dbs_tuners *tuners; in cs_init() local
324 tuners = kzalloc(sizeof(*tuners), GFP_KERNEL); in cs_init()
325 if (!tuners) { in cs_init()
330 tuners->up_threshold = DEF_FREQUENCY_UP_THRESHOLD; in cs_init()
331 tuners->down_threshold = DEF_FREQUENCY_DOWN_THRESHOLD; in cs_init()
332 tuners->sampling_down_factor = DEF_SAMPLING_DOWN_FACTOR; in cs_init()
333 tuners->ignore_nice_load = 0; in cs_init()
334 tuners->freq_step = DEF_FREQUENCY_STEP; in cs_init()
336 dbs_data->tuners = tuners; in cs_init()
345 kfree(dbs_data->tuners); in cs_exit()