Lines Matching defs:pdata

164 	struct sta350_platform_data *pdata;
909 struct sta350_platform_data *pdata = sta350->pdata;
926 if (!pdata->thermal_warning_recovery)
928 if (!pdata->thermal_warning_adjustment)
930 if (!pdata->fault_detect_recovery)
940 pdata->ffx_power_output_mode
944 pdata->drop_compensation_ns
949 pdata->oc_warning_adjustment ?
955 pdata->max_power_use_mpcc ?
959 pdata->max_power_correction ?
963 pdata->am_reduction_mode ?
967 pdata->odd_pwm_speed_mode ?
971 pdata->distortion_compensation ?
976 pdata->invalid_input_detect_mute ?
980 pdata->output_conf
986 pdata->ch1_output_mapping
990 pdata->ch2_output_mapping
994 pdata->ch3_output_mapping
1000 pdata->activate_mute_output ?
1004 pdata->bridge_immediate_off ?
1008 pdata->noise_shape_dc_cut ?
1012 pdata->powerdown_master_vol ?
1017 pdata->powerdown_delay_divider
1090 struct sta350_platform_data *pdata;
1095 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
1096 if (!pdata)
1100 &pdata->output_conf);
1102 &pdata->ch1_output_mapping);
1104 &pdata->ch2_output_mapping);
1106 &pdata->ch3_output_mapping);
1108 pdata->thermal_warning_recovery =
1110 pdata->thermal_warning_adjustment =
1112 pdata->fault_detect_recovery =
1115 pdata->ffx_power_output_mode = STA350_FFX_PM_VARIABLE_DROP_COMP;
1128 pdata->ffx_power_output_mode = mode;
1133 pdata->drop_compensation_ns = clamp_t(u16, tmp, 0, 300) / 20;
1135 pdata->oc_warning_adjustment =
1139 pdata->max_power_use_mpcc =
1141 pdata->max_power_correction =
1143 pdata->am_reduction_mode =
1145 pdata->odd_pwm_speed_mode =
1147 pdata->distortion_compensation =
1151 pdata->invalid_input_detect_mute =
1155 pdata->activate_mute_output =
1157 pdata->bridge_immediate_off =
1159 pdata->noise_shape_dc_cut =
1161 pdata->powerdown_master_vol =
1166 pdata->powerdown_delay_divider = ilog2(tmp8);
1172 sta350->pdata = pdata;
1189 sta350->pdata = dev_get_platdata(dev);