Message ID | 20240819113855.787149-2-liuyuntao12@huawei.com (mailing list archive) |
---|---|
State | New, archived |
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/usb/host/ehci-mv.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/usb/host/ehci-mv.c b/drivers/usb/host/ehci-mv.c > index 2f1fc7eb8b72..33d925316eec 100644 > --- a/drivers/usb/host/ehci-mv.c > +++ b/drivers/usb/host/ehci-mv.c > @@ -260,6 +260,7 @@ static const struct platform_device_id ehci_id_table[] = { > {"pxa-sph", 0}, > {}, > }; > +MODULE_DEVICE_TABLE(platform, ehci_id_table); Neither of the two entries is used any more, so a better fix would be to remove the platform_device_id table. Arnd
diff --git a/drivers/usb/host/ehci-mv.c b/drivers/usb/host/ehci-mv.c index 2f1fc7eb8b72..33d925316eec 100644 --- a/drivers/usb/host/ehci-mv.c +++ b/drivers/usb/host/ehci-mv.c @@ -260,6 +260,7 @@ static const struct platform_device_id ehci_id_table[] = { {"pxa-sph", 0}, {}, }; +MODULE_DEVICE_TABLE(platform, ehci_id_table); static void mv_ehci_shutdown(struct platform_device *pdev) {
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/usb/host/ehci-mv.c | 1 + 1 file changed, 1 insertion(+)