Lines Matching refs:tuners
65 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners; in cs_check_cpu()
121 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners; in cs_dbs_timer()
165 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners; in store_sampling_down_factor()
180 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners; in store_sampling_rate()
195 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners; in store_up_threshold()
210 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners; in store_down_threshold()
227 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners; in store_ignore_nice_load()
259 struct cs_dbs_tuners *cs_tuners = dbs_data->tuners; in store_freq_step()
330 struct cs_dbs_tuners *tuners; in cs_init() local
332 tuners = kzalloc(sizeof(*tuners), GFP_KERNEL); in cs_init()
333 if (!tuners) { in cs_init()
338 tuners->up_threshold = DEF_FREQUENCY_UP_THRESHOLD; in cs_init()
339 tuners->down_threshold = DEF_FREQUENCY_DOWN_THRESHOLD; in cs_init()
340 tuners->sampling_down_factor = DEF_SAMPLING_DOWN_FACTOR; in cs_init()
341 tuners->ignore_nice_load = 0; in cs_init()
342 tuners->freq_step = DEF_FREQUENCY_STEP; in cs_init()
344 dbs_data->tuners = tuners; in cs_init()
361 kfree(dbs_data->tuners); in cs_exit()