Message ID | 20220406002648.393486-3-dmitry.baryshkov@linaro.org (mailing list archive) |
---|---|
State | New, archived |
Delegated to: | Daniel Lezcano |
Headers | show |
Series | arm: qcom: qcom-apq8064: add separate device node for tsens | expand |
On 06/04/2022 02:26, Dmitry Baryshkov wrote: > On apq8064 (msm8960) platforms the tsens device is created manually by > the gcc driver. Prepare the tsens driver for the qcom,msm8960-tsens > device instantiated from the device tree. > > Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> > --- > drivers/thermal/qcom/tsens.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/drivers/thermal/qcom/tsens.c b/drivers/thermal/qcom/tsens.c > index 154d3cb19c88..7963ee33bf75 100644 > --- a/drivers/thermal/qcom/tsens.c > +++ b/drivers/thermal/qcom/tsens.c > @@ -979,6 +979,9 @@ static const struct of_device_id tsens_table[] = { > }, { > .compatible = "qcom,msm8939-tsens", > .data = &data_8939, > + }, { > + .compatible = "qcom,msm8960-tsens", > + .data = &data_8960, > }, { > .compatible = "qcom,msm8974-tsens", > .data = &data_8974, Applied, thanks
diff --git a/drivers/thermal/qcom/tsens.c b/drivers/thermal/qcom/tsens.c index 154d3cb19c88..7963ee33bf75 100644 --- a/drivers/thermal/qcom/tsens.c +++ b/drivers/thermal/qcom/tsens.c @@ -979,6 +979,9 @@ static const struct of_device_id tsens_table[] = { }, { .compatible = "qcom,msm8939-tsens", .data = &data_8939, + }, { + .compatible = "qcom,msm8960-tsens", + .data = &data_8960, }, { .compatible = "qcom,msm8974-tsens", .data = &data_8974,
On apq8064 (msm8960) platforms the tsens device is created manually by the gcc driver. Prepare the tsens driver for the qcom,msm8960-tsens device instantiated from the device tree. Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> --- drivers/thermal/qcom/tsens.c | 3 +++ 1 file changed, 3 insertions(+)