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@xxxxxxxxxx> --- drivers/dma/mmp_pdma.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/dma/mmp_pdma.c b/drivers/dma/mmp_pdma.c index 136fcaeff8dd..05d051ecf833 100644 --- a/drivers/dma/mmp_pdma.c +++ b/drivers/dma/mmp_pdma.c @@ -1129,6 +1129,7 @@ static const struct platform_device_id mmp_pdma_id_table[] = { { "mmp-pdma", }, { }, }; +MODULE_DEVICE_TABLE(platform, mmp_pdma_id_table); static struct platform_driver mmp_pdma_driver = { .driver = { -- 2.34.1