diff options
author | Liao Chen <[email protected]> | 2024-08-22 13:01:13 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2024-08-25 13:45:56 +0200 |
commit | 4333dbd9798d470d0c81608bb44bb7c8fd7f7948 (patch) | |
tree | 91104f75e321a1dc6732fc270e3f3c914fbafd04 | |
parent | 15a34e5d4b23ce500d8de8ac8e084c417a500255 (diff) |
usb: ehci-brcm: fix module autoloading
Add MODULE_DEVICE_TABLE(), so modules could be properly autoloaded
based on the alias from of_device_id table.
Signed-off-by: Liao Chen <[email protected]>
Acked-by: Florian Fainelli <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/usb/host/ehci-brcm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/host/ehci-brcm.c b/drivers/usb/host/ehci-brcm.c index 77e42c739c58..68cad0620f1a 100644 --- a/drivers/usb/host/ehci-brcm.c +++ b/drivers/usb/host/ehci-brcm.c @@ -246,6 +246,7 @@ static const struct of_device_id brcm_ehci_of_match[] = { { .compatible = "brcm,bcm7445-ehci", }, {} }; +MODULE_DEVICE_TABLE(of, brcm_ehci_of_match); static struct platform_driver ehci_brcm_driver = { .probe = ehci_brcm_probe, |