public inbox for linux-i2c@vger.kernel.org
 help / color / mirror / Atom feed
From: Yuntao Liu <liuyuntao12@huawei.com>
To: <openipmi-developer@lists.sourceforge.net>,
	<linux-kernel@vger.kernel.org>,
	<linux-arm-kernel@lists.infradead.org>,
	<dmaengine@vger.kernel.org>, <linux-edac@vger.kernel.org>,
	<linux-i2c@vger.kernel.org>, <linux-usb@vger.kernel.org>
Cc: <minyard@acm.org>, <ludovic.desroches@microchip.com>,
	<vkoul@kernel.org>, <daniel@zonque.org>,
	<haojian.zhuang@gmail.com>, <robert.jarzmik@free.fr>,
	<morbidrsa@gmail.com>, <bp@alien8.de>, <tony.luck@intel.com>,
	<james.morse@arm.com>, <mchehab@kernel.org>, <rric@kernel.org>,
	<codrin.ciubotariu@microchip.com>, <andi.shyti@kernel.org>,
	<nicolas.ferre@microchip.com>, <alexandre.belloni@bootlin.com>,
	<claudiu.beznea@tuxon.dev>, <arnd@arndb.de>,
	<gregkh@linuxfoundation.org>, <stern@rowland.harvard.edu>,
	<u.kleine-koenig@pengutronix.de>, <duje.mihanovic@skole.hr>,
	<broonie@kernel.org>, <andriy.shevchenko@linux.intel.com>,
	<liuyuntao12@huawei.com>
Subject: [PATCH -next 1/9] usb: ehci-mv: fix module autoloading
Date: Mon, 19 Aug 2024 11:38:47 +0000	[thread overview]
Message-ID: <20240819113855.787149-2-liuyuntao12@huawei.com> (raw)
In-Reply-To: <20240819113855.787149-1-liuyuntao12@huawei.com>

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);
 
 static void mv_ehci_shutdown(struct platform_device *pdev)
 {
-- 
2.34.1


  reply	other threads:[~2024-08-19 11:47 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-19 11:38 [PATCH -next 0/9] drivers: fix some module autoloading Yuntao Liu
2024-08-19 11:38 ` Yuntao Liu [this message]
2024-08-19 11:49   ` [PATCH -next 1/9] usb: ehci-mv: fix " Arnd Bergmann
2024-08-19 11:38 ` [PATCH -next 2/9] soc: pxa: ssp: " Yuntao Liu
2024-08-19 11:50   ` Arnd Bergmann
2024-08-19 11:38 ` [PATCH -next 3/9] misc: atmel-ssc: " Yuntao Liu
2024-08-19 11:54   ` Arnd Bergmann
2024-08-19 11:38 ` [PATCH -next 4/9] i2c: at91: " Yuntao Liu
2024-08-19 11:55   ` Arnd Bergmann
2024-08-19 11:38 ` [PATCH -next 5/9] mpc85xx_edac: " Yuntao Liu
2024-08-19 11:57   ` Arnd Bergmann
2024-08-19 11:38 ` [PATCH -next 6/9] dmaengine: pxa: " Yuntao Liu
2024-08-19 11:58   ` Arnd Bergmann
2024-08-19 11:38 ` [PATCH -next 7/9] dmaengine: mmp_pdma: " Yuntao Liu
2024-08-19 11:59   ` Arnd Bergmann
2024-08-19 11:38 ` [PATCH -next 8/9] dmaengine: at_hdmac: " Yuntao Liu
2024-08-19 12:01   ` Arnd Bergmann
2024-08-19 11:38 ` [PATCH -next 9/9] ipmi: ipmi_ssif: " Yuntao Liu
2024-08-19 12:03   ` Arnd Bergmann
2024-08-19 12:09 ` [PATCH -next 0/9] drivers: fix some " Arnd Bergmann
2024-08-19 12:23   ` liuyuntao (F)
2024-08-19 20:31   ` Andi Shyti

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240819113855.787149-2-liuyuntao12@huawei.com \
    --to=liuyuntao12@huawei.com \
    --cc=alexandre.belloni@bootlin.com \
    --cc=andi.shyti@kernel.org \
    --cc=andriy.shevchenko@linux.intel.com \
    --cc=arnd@arndb.de \
    --cc=bp@alien8.de \
    --cc=broonie@kernel.org \
    --cc=claudiu.beznea@tuxon.dev \
    --cc=codrin.ciubotariu@microchip.com \
    --cc=daniel@zonque.org \
    --cc=dmaengine@vger.kernel.org \
    --cc=duje.mihanovic@skole.hr \
    --cc=gregkh@linuxfoundation.org \
    --cc=haojian.zhuang@gmail.com \
    --cc=james.morse@arm.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-edac@vger.kernel.org \
    --cc=linux-i2c@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=ludovic.desroches@microchip.com \
    --cc=mchehab@kernel.org \
    --cc=minyard@acm.org \
    --cc=morbidrsa@gmail.com \
    --cc=nicolas.ferre@microchip.com \
    --cc=openipmi-developer@lists.sourceforge.net \
    --cc=robert.jarzmik@free.fr \
    --cc=rric@kernel.org \
    --cc=stern@rowland.harvard.edu \
    --cc=tony.luck@intel.com \
    --cc=u.kleine-koenig@pengutronix.de \
    --cc=vkoul@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox