Lines Matching refs:tuners
86 struct od_dbs_tuners *od_tuners = dbs_data->tuners; in generic_powersave_bias_target()
138 struct od_dbs_tuners *od_tuners = dbs_data->tuners; in dbs_freq_increase()
160 struct od_dbs_tuners *od_tuners = dbs_data->tuners; in od_check_cpu()
202 struct od_dbs_tuners *od_tuners = dbs_data->tuners; in od_dbs_timer()
255 struct od_dbs_tuners *od_tuners = dbs_data->tuners; in update_sampling_rate()
316 struct od_dbs_tuners *od_tuners = dbs_data->tuners; in store_io_is_busy()
339 struct od_dbs_tuners *od_tuners = dbs_data->tuners; in store_up_threshold()
356 struct od_dbs_tuners *od_tuners = dbs_data->tuners; in store_sampling_down_factor()
377 struct od_dbs_tuners *od_tuners = dbs_data->tuners; in store_ignore_nice_load()
412 struct od_dbs_tuners *od_tuners = dbs_data->tuners; in store_powersave_bias()
480 struct od_dbs_tuners *tuners; in od_init() local
484 tuners = kzalloc(sizeof(*tuners), GFP_KERNEL); in od_init()
485 if (!tuners) { in od_init()
495 tuners->up_threshold = MICRO_FREQUENCY_UP_THRESHOLD; in od_init()
503 tuners->up_threshold = DEF_FREQUENCY_UP_THRESHOLD; in od_init()
510 tuners->sampling_down_factor = DEF_SAMPLING_DOWN_FACTOR; in od_init()
511 tuners->ignore_nice_load = 0; in od_init()
512 tuners->powersave_bias = default_powersave_bias; in od_init()
513 tuners->io_is_busy = should_io_be_busy(); in od_init()
515 dbs_data->tuners = tuners; in od_init()
522 kfree(dbs_data->tuners); in od_exit()
572 od_tuners = dbs_data->tuners; in od_set_powersave_bias()