diff mbox series

[-next,6/9] dmaengine: pxa: fix module autoloading

Message ID 20240819113855.787149-7-liuyuntao12@huawei.com
State New
Headers show
Series drivers: fix some module autoloading | expand

Commit Message

Yuntao Liu Aug. 19, 2024, 11:38 a.m. UTC
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/dma/pxa_dma.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Arnd Bergmann Aug. 19, 2024, 11:58 a.m. UTC | #1
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>
> ---
>  drivers/dma/pxa_dma.c | 1 +
>  1 file changed, 1 insertion(+)
>

The legacy probe will soon be gone for pxa, so I would skip this
one, like the other pxa patches.

      Arnd
diff mbox series

Patch

diff --git a/drivers/dma/pxa_dma.c b/drivers/dma/pxa_dma.c
index 31f8da810c05..56785805e7a7 100644
--- a/drivers/dma/pxa_dma.c
+++ b/drivers/dma/pxa_dma.c
@@ -1434,6 +1434,7 @@  static const struct platform_device_id pxad_id_table[] = {
 	{ "pxa-dma", },
 	{ },
 };
+MODULE_DEVICE_TABLE(platform, pxad_id_table);
 
 static struct platform_driver pxad_driver = {
 	.driver		= {