2024-04-10 16:41:06

by Krzysztof Kozlowski

[permalink] [raw]
Subject: [PATCH] soc: qcom: fix module autoloading

Add MODULE_DEVICE_TABLE(), so the module could be properly autoloaded
based on the alias from of_device_id table.

Signed-off-by: Krzysztof Kozlowski <[email protected]>
---
drivers/soc/qcom/pmic_pdcharger_ulog.c | 1 +
drivers/soc/qcom/rpm_master_stats.c | 1 +
2 files changed, 2 insertions(+)

diff --git a/drivers/soc/qcom/pmic_pdcharger_ulog.c b/drivers/soc/qcom/pmic_pdcharger_ulog.c
index 238cd38589dc..5f9ea3fe6d6d 100644
--- a/drivers/soc/qcom/pmic_pdcharger_ulog.c
+++ b/drivers/soc/qcom/pmic_pdcharger_ulog.c
@@ -150,6 +150,7 @@ static const struct rpmsg_device_id pmic_pdcharger_ulog_rpmsg_id_match[] = {
{ "PMIC_LOGS_ADSP_APPS" },
{}
};
+MODULE_DEVICE_TABLE(rpmsg, pmic_pdcharger_ulog_rpmsg_id_match);

static struct rpmsg_driver pmic_pdcharger_ulog_rpmsg_driver = {
.probe = pmic_pdcharger_ulog_rpmsg_probe,
diff --git a/drivers/soc/qcom/rpm_master_stats.c b/drivers/soc/qcom/rpm_master_stats.c
index 9ca13bcf67d3..c5745e20e736 100644
--- a/drivers/soc/qcom/rpm_master_stats.c
+++ b/drivers/soc/qcom/rpm_master_stats.c
@@ -148,6 +148,7 @@ static const struct of_device_id rpm_master_table[] = {
{ .compatible = "qcom,rpm-master-stats" },
{ },
};
+MODULE_DEVICE_TABLE(of, rpm_master_table);

static struct platform_driver master_stats_driver = {
.probe = master_stats_probe,
--
2.34.1



2024-04-10 17:54:16

by Konrad Dybcio

[permalink] [raw]
Subject: Re: [PATCH] soc: qcom: fix module autoloading



On 4/10/24 18:40, Krzysztof Kozlowski wrote:
> Add MODULE_DEVICE_TABLE(), so the module could be properly autoloaded
> based on the alias from of_device_id table.
>
> Signed-off-by: Krzysztof Kozlowski <[email protected]>
> ---

These were omitted intentionally, as these are both debug drivers.

Perhaps we could mkdir drivers/soc/qcom/debug to make this clearer

Konrad

2024-04-10 18:38:28

by Krzysztof Kozlowski

[permalink] [raw]
Subject: Re: [PATCH] soc: qcom: fix module autoloading

On 10/04/2024 20:11, Bjorn Andersson wrote:
> On Wed, Apr 10, 2024 at 07:53:32PM +0200, Konrad Dybcio wrote:
>>
>>
>> On 4/10/24 18:40, Krzysztof Kozlowski wrote:
>>> Add MODULE_DEVICE_TABLE(), so the module could be properly autoloaded
>>> based on the alias from of_device_id table.
>>>
>>> Signed-off-by: Krzysztof Kozlowski <[email protected]>
>>> ---
>>
>> These were omitted intentionally, as these are both debug drivers.
>>
>
> Makes sense to me, could we have a comment added that clarifies this
> intention?
>
>> Perhaps we could mkdir drivers/soc/qcom/debug to make this clearer
>>
>
> Not sure if that is necessary, and IMO it wouldn't convey that
> MODULE_DEVICE_TABLE() was omitted intentionally.

I think this deserves a comment, so no one will be doing my same again
(it's part of bigger effort).

Best regards,
Krzysztof


2024-04-10 18:52:31

by Bjorn Andersson

[permalink] [raw]
Subject: Re: [PATCH] soc: qcom: fix module autoloading

On Wed, Apr 10, 2024 at 07:53:32PM +0200, Konrad Dybcio wrote:
>
>
> On 4/10/24 18:40, Krzysztof Kozlowski wrote:
> > Add MODULE_DEVICE_TABLE(), so the module could be properly autoloaded
> > based on the alias from of_device_id table.
> >
> > Signed-off-by: Krzysztof Kozlowski <[email protected]>
> > ---
>
> These were omitted intentionally, as these are both debug drivers.
>

Makes sense to me, could we have a comment added that clarifies this
intention?

> Perhaps we could mkdir drivers/soc/qcom/debug to make this clearer
>

Not sure if that is necessary, and IMO it wouldn't convey that
MODULE_DEVICE_TABLE() was omitted intentionally.

Regards,
Bjorn