On 7.11.2024 6:02 PM, Barnabás Czémán wrote: > Add support for tsens v1.4 block what can be found in > MSM8937 and MSM8917. > > Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@xxxxxxxxxx> > Signed-off-by: Barnabás Czémán <barnabas.czeman@xxxxxxxxxxxxxx> > --- > drivers/thermal/qcom/tsens-v1.c | 13 +++++++++++++ > drivers/thermal/qcom/tsens.c | 3 +++ > drivers/thermal/qcom/tsens.h | 2 +- > 3 files changed, 17 insertions(+), 1 deletion(-) > > diff --git a/drivers/thermal/qcom/tsens-v1.c b/drivers/thermal/qcom/tsens-v1.c > index dc1c4ae2d8b01b42a0edbb7f12a5780b25d0c8ac..50787cf68bfae48da6061d8e75956308f41053be 100644 > --- a/drivers/thermal/qcom/tsens-v1.c > +++ b/drivers/thermal/qcom/tsens-v1.c > @@ -162,6 +162,19 @@ struct tsens_plat_data data_tsens_v1 = { > .fields = tsens_v1_regfields, > }; > > +static const struct tsens_ops ops_8937 = { > + .init = init_common, > + .calibrate = tsens_calibrate_common, > + .get_temp = get_temp_tsens_valid, > +}; Rename ops_8976 to ops_common and reuse it Konrad