From: Abel Vesa Date: Fri, 19 Sep 2025 12:17:11 +0000 (+0300) Subject: pinctrl: qcom: glymur: Drop unnecessary platform data from match table X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=37e7b536061a33c8f27030e3ffc5a717a6c319e3;p=thirdparty%2Fkernel%2Fstable.git pinctrl: qcom: glymur: Drop unnecessary platform data from match table The platform specific configuration is already passed on to the generic msm probe. So it's useless to exist in the match table next to the compatible. So drop it from match table. Fixes: 87ebcd8baebf ("pinctrl: qcom: Add glymur pinctrl driver") Signed-off-by: Abel Vesa Reviewed-by: Dmitry Baryshkov Signed-off-by: Linus Walleij --- diff --git a/drivers/pinctrl/qcom/pinctrl-glymur.c b/drivers/pinctrl/qcom/pinctrl-glymur.c index 9913f98e95311..9781e7fcb3a11 100644 --- a/drivers/pinctrl/qcom/pinctrl-glymur.c +++ b/drivers/pinctrl/qcom/pinctrl-glymur.c @@ -1743,7 +1743,7 @@ static const struct msm_pinctrl_soc_data glymur_tlmm = { }; static const struct of_device_id glymur_tlmm_of_match[] = { - { .compatible = "qcom,glymur-tlmm", .data = &glymur_tlmm }, + { .compatible = "qcom,glymur-tlmm", }, { } };