[PATCH -next 5/9] mpc85xx_edac: fix module autoloading

Yuntao Liu posted 9 patches 1 year, 5 months ago
[PATCH -next 5/9] mpc85xx_edac: fix module autoloading
Posted by Yuntao Liu 1 year, 5 months ago
Add MODULE_DEVICE_TABLE(), so modules could be properly autoloaded
based on the alias from platform_device_id table.

Signed-off-by: Yuntao Liu <liuyuntao12@huawei.com>
---
 drivers/edac/mpc85xx_edac.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/edac/mpc85xx_edac.c b/drivers/edac/mpc85xx_edac.c
index d0266cbcbeda..c8b94aab9819 100644
--- a/drivers/edac/mpc85xx_edac.c
+++ b/drivers/edac/mpc85xx_edac.c
@@ -320,6 +320,7 @@ static const struct platform_device_id mpc85xx_pci_err_match[] = {
 	},
 	{}
 };
+MODULE_DEVICE_TABLE(platform, mpc85xx_pci_err_match);
 
 static struct platform_driver mpc85xx_pci_err_driver = {
 	.probe = mpc85xx_pci_err_probe,
-- 
2.34.1
Re: [PATCH -next 5/9] mpc85xx_edac: fix module autoloading
Posted by Arnd Bergmann 1 year, 5 months ago
On Mon, Aug 19, 2024, at 13:38, Yuntao Liu wrote:
> Add MODULE_DEVICE_TABLE(), so modules could be properly autoloaded
> based on the alias from platform_device_id table.
>
> Signed-off-by: Yuntao Liu <liuyuntao12@huawei.com>

Acked-by: Arnd Bergmann <arnd@arndb.de>

>  	},
>  	{}
>  };
> +MODULE_DEVICE_TABLE(platform, mpc85xx_pci_err_match);
> 

I see that this device is created in arch/powerpc/sysdev/fsl_pci.c,
so your change makes sense here.

     Arnd