Message ID | 20240819113855.787149-3-liuyuntao12@huawei.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | drivers: fix some module autoloading | expand |
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/soc/pxa/ssp.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/soc/pxa/ssp.c b/drivers/soc/pxa/ssp.c > index 854d32e04558..6ac3f376d030 100644 > --- a/drivers/soc/pxa/ssp.c > +++ b/drivers/soc/pxa/ssp.c > @@ -194,6 +194,7 @@ static const struct platform_device_id ssp_id_table[] = { > { "pxa910-ssp", PXA910_SSP }, > { }, > }; > +MODULE_DEVICE_TABLE(platform, ssp_id_table); > I think we can drop support for legacy probing early next year when the last pxa board files are gone, so this is no longer needed. Arnd
diff --git a/drivers/soc/pxa/ssp.c b/drivers/soc/pxa/ssp.c index 854d32e04558..6ac3f376d030 100644 --- a/drivers/soc/pxa/ssp.c +++ b/drivers/soc/pxa/ssp.c @@ -194,6 +194,7 @@ static const struct platform_device_id ssp_id_table[] = { { "pxa910-ssp", PXA910_SSP }, { }, }; +MODULE_DEVICE_TABLE(platform, ssp_id_table); static struct platform_driver pxa_ssp_driver = { .probe = pxa_ssp_probe,
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/soc/pxa/ssp.c | 1 + 1 file changed, 1 insertion(+)