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()
201 struct od_dbs_tuners *od_tuners = dbs_data->tuners; in od_dbs_timer()
249 struct od_dbs_tuners *od_tuners = dbs_data->tuners; in update_sampling_rate()
302 struct od_dbs_tuners *od_tuners = dbs_data->tuners; in store_io_is_busy()
325 struct od_dbs_tuners *od_tuners = dbs_data->tuners; in store_up_threshold()
342 struct od_dbs_tuners *od_tuners = dbs_data->tuners; in store_sampling_down_factor()
363 struct od_dbs_tuners *od_tuners = dbs_data->tuners; in store_ignore_nice_load()
398 struct od_dbs_tuners *od_tuners = dbs_data->tuners; in store_powersave_bias()
466 struct od_dbs_tuners *tuners; in od_init() local
470 tuners = kzalloc(sizeof(*tuners), GFP_KERNEL); in od_init()
471 if (!tuners) { in od_init()
481 tuners->up_threshold = MICRO_FREQUENCY_UP_THRESHOLD; in od_init()
489 tuners->up_threshold = DEF_FREQUENCY_UP_THRESHOLD; in od_init()
496 tuners->sampling_down_factor = DEF_SAMPLING_DOWN_FACTOR; in od_init()
497 tuners->ignore_nice_load = 0; in od_init()
498 tuners->powersave_bias = default_powersave_bias; in od_init()
499 tuners->io_is_busy = should_io_be_busy(); in od_init()
501 dbs_data->tuners = tuners; in od_init()
507 kfree(dbs_data->tuners); in od_exit()
561 od_tuners = dbs_data->tuners; in od_set_powersave_bias()