[PATCH -next] soc: ixp4xx/qmgr: fix module autoloading

Liao Chen posted 1 patch 1 year, 5 months ago
drivers/soc/ixp4xx/ixp4xx-qmgr.c | 1 +
1 file changed, 1 insertion(+)
[PATCH -next] soc: ixp4xx/qmgr: fix module autoloading
Posted by Liao Chen 1 year, 5 months ago
Add MODULE_DEVICE_TABLE(), so modules could be properly autoloaded
based on the alias from of_device_id table.

Signed-off-by: Liao Chen <liaochen4@huawei.com>
---
 drivers/soc/ixp4xx/ixp4xx-qmgr.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/soc/ixp4xx/ixp4xx-qmgr.c b/drivers/soc/ixp4xx/ixp4xx-qmgr.c
index cb112f3643e9..dabcf91c3cae 100644
--- a/drivers/soc/ixp4xx/ixp4xx-qmgr.c
+++ b/drivers/soc/ixp4xx/ixp4xx-qmgr.c
@@ -454,6 +454,7 @@ static const struct of_device_id ixp4xx_qmgr_of_match[] = {
         },
 	{},
 };
+MODULE_DEVICE_TABLE(of, ixp4xx_qmgr_of_match);
 
 static struct platform_driver ixp4xx_qmgr_driver = {
 	.driver = {
-- 
2.34.1
Re: [PATCH -next] soc: ixp4xx/qmgr: fix module autoloading
Posted by liaochen (A) 1 year, 5 months ago
On 2024/8/14 11:10, Liao Chen wrote:
> Add MODULE_DEVICE_TABLE(), so modules could be properly autoloaded
> based on the alias from of_device_id table.
> 
> Signed-off-by: Liao Chen <liaochen4@huawei.com>
> ---
>   drivers/soc/ixp4xx/ixp4xx-qmgr.c | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/soc/ixp4xx/ixp4xx-qmgr.c b/drivers/soc/ixp4xx/ixp4xx-qmgr.c
> index cb112f3643e9..dabcf91c3cae 100644
> --- a/drivers/soc/ixp4xx/ixp4xx-qmgr.c
> +++ b/drivers/soc/ixp4xx/ixp4xx-qmgr.c
> @@ -454,6 +454,7 @@ static const struct of_device_id ixp4xx_qmgr_of_match[] = {
>           },
>   	{},
>   };
> +MODULE_DEVICE_TABLE(of, ixp4xx_qmgr_of_match);
>   
>   static struct platform_driver ixp4xx_qmgr_driver = {
>   	.driver = {
Gentle ping

Thanks,
Chen