[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20240814030443.3876203-1-liaochen4@huawei.com>
Date: Wed, 14 Aug 2024 03:04:43 +0000
From: Liao Chen <liaochen4@...wei.com>
To: <linux-usb@...r.kernel.org>
CC: <linux-kernel@...r.kernel.org>, <justin.chen@...adcom.com>,
<alcooperx@...il.com>, <bcm-kernel-feedback-list@...adcom.com>,
<gregkh@...uxfoundation.org>
Subject: [PATCH -next] usb: bdc: 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 <liaochen4@...wei.com>
---
drivers/usb/gadget/udc/bdc/bdc_core.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/usb/gadget/udc/bdc/bdc_core.c b/drivers/usb/gadget/udc/bdc/bdc_core.c
index 35a652807fca..5149e2b7f050 100644
--- a/drivers/usb/gadget/udc/bdc/bdc_core.c
+++ b/drivers/usb/gadget/udc/bdc/bdc_core.c
@@ -639,6 +639,7 @@ static const struct of_device_id bdc_of_match[] = {
{ .compatible = "brcm,bdc" },
{ /* sentinel */ }
};
+MODULE_DEVICE_TABLE(of, bdc_of_match);
static struct platform_driver bdc_driver = {
.driver = {
--
2.34.1
Powered by blists - more mailing lists