[PATCH] pinctrl: qcom: ipq5210: Publish the OF module alias

hpp.iscas posted 1 patch 2 weeks, 6 days ago
drivers/pinctrl/qcom/pinctrl-ipq5210.c | 1 +
1 file changed, 1 insertion(+)
[PATCH] pinctrl: qcom: ipq5210: Publish the OF module alias
Posted by hpp.iscas 2 weeks, 6 days ago
The IPQ5210 TLMM platform driver can be a module and matches through
ipq5210_tlmm_of_match. This table is not published for OF modalias
matching.

Publish the existing table, preserving arch_initcall ordering and
the shared MSM pinctrl probe.

Fixes: a549fe22376f ("pinctrl: qcom: Introduce IPQ5210 TLMM driver")
Signed-off-by: hpp.iscas <hppiscas@163.com>
---
 drivers/pinctrl/qcom/pinctrl-ipq5210.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/pinctrl/qcom/pinctrl-ipq5210.c b/drivers/pinctrl/qcom/pinctrl-ipq5210.c
index 827a4ad..d5b4eb3 100644
--- a/drivers/pinctrl/qcom/pinctrl-ipq5210.c
+++ b/drivers/pinctrl/qcom/pinctrl-ipq5210.c
@@ -867,6 +867,7 @@ static const struct of_device_id ipq5210_tlmm_of_match[] = {
 	{ .compatible = "qcom,ipq5210-tlmm", },
 	{ },
 };
+MODULE_DEVICE_TABLE(of, ipq5210_tlmm_of_match);
 
 static int ipq5210_tlmm_probe(struct platform_device *pdev)
 {
Re: [PATCH] pinctrl: qcom: ipq5210: Publish the OF module alias
Posted by Bartosz Golaszewski 2 weeks, 4 days ago
On Sat, 05 Sep 2026 21:43:40 +0800, hpp.iscas wrote:
> The IPQ5210 TLMM platform driver can be a module and matches through
> ipq5210_tlmm_of_match. This table is not published for OF modalias
> matching.
> 
> Publish the existing table, preserving arch_initcall ordering and
> the shared MSM pinctrl probe.
> 
> [...]

Applied, thanks!

[1/1] pinctrl: qcom: ipq5210: Publish the OF module alias
      https://git.kernel.org/brgl/c/818103dc7f5998a0d7957fb71d4deecdf4d579e1

Best regards,
-- 
Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com>
Re: [PATCH] pinctrl: qcom: ipq5210: Publish the OF module alias
Posted by Konrad Dybcio 2 weeks, 4 days ago
On 9/5/26 3:43 PM, hpp.iscas wrote:
> The IPQ5210 TLMM platform driver can be a module and matches through
> ipq5210_tlmm_of_match. This table is not published for OF modalias
> matching.
> 
> Publish the existing table, preserving arch_initcall ordering and
> the shared MSM pinctrl probe.
> 
> Fixes: a549fe22376f ("pinctrl: qcom: Introduce IPQ5210 TLMM driver")
> Signed-off-by: hpp.iscas <hppiscas@163.com>
> ---

Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>

Konrad