diff options
| author | Kay Sievers <kay.sievers@vrfy.org> | 2008-04-11 00:29:22 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-11 11:06:44 -0400 |
| commit | f4fce61d410b96ae263b001c45f73df1863dad8d (patch) | |
| tree | 6354ca838baff580ac930b96ecfbcb630454efd8 | |
| parent | f34c32f13ce8c539f3f582562358e39a86b00e83 (diff) | |
usb host: fix platform driver hotplug/coldplug
Since 43cc71eed1250755986da4c0f9898f9a635cb3bf, the platform modalias is
prefixed with "platform:". Add MODULE_ALIAS() to the hotpluggable USB HCDs,
to allow re-enable auto loading.
[dbrownell@users.sourceforge.net: more drivers; registration fixes]
Signed-off-by: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Cc: Greg KH <greg@kroah.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
| -rw-r--r-- | drivers/usb/host/isp116x-hcd.c | 8 | ||||
| -rw-r--r-- | drivers/usb/host/ohci-at91.c | 3 | ||||
| -rw-r--r-- | drivers/usb/host/ohci-au1xxx.c | 1 | ||||
| -rw-r--r-- | drivers/usb/host/ohci-ep93xx.c | 2 | ||||
| -rw-r--r-- | drivers/usb/host/ohci-lh7a404.c | 1 | ||||
| -rw-r--r-- | drivers/usb/host/ohci-omap.c | 1 | ||||
| -rw-r--r-- | drivers/usb/host/ohci-pnx4008.c | 4 | ||||
| -rw-r--r-- | drivers/usb/host/ohci-pnx8550.c | 5 | ||||
| -rw-r--r-- | drivers/usb/host/ohci-ppc-soc.c | 1 | ||||
| -rw-r--r-- | drivers/usb/host/ohci-pxa27x.c | 3 | ||||
| -rw-r--r-- | drivers/usb/host/ohci-s3c2410.c | 1 | ||||
| -rw-r--r-- | drivers/usb/host/ohci-sh.c | 1 | ||||
| -rw-r--r-- | drivers/usb/host/ohci-sm501.c | 1 | ||||
| -rw-r--r-- | drivers/usb/host/r8a66597-hcd.c | 2 | ||||
| -rw-r--r-- | drivers/usb/host/sl811-hcd.c | 1 | ||||
| -rw-r--r-- | drivers/usb/host/u132-hcd.c | 1 |
16 files changed, 30 insertions, 6 deletions
diff --git a/drivers/usb/host/isp116x-hcd.c b/drivers/usb/host/isp116x-hcd.c index d7071c855758..203a3359a648 100644 --- a/drivers/usb/host/isp116x-hcd.c +++ b/drivers/usb/host/isp116x-hcd.c | |||
| @@ -1684,14 +1684,18 @@ static int isp116x_resume(struct platform_device *dev) | |||
| 1684 | 1684 | ||
| 1685 | #endif | 1685 | #endif |
| 1686 | 1686 | ||
| 1687 | /* work with hotplug and coldplug */ | ||
| 1688 | MODULE_ALIAS("platform:isp116x-hcd"); | ||
| 1689 | |||
| 1687 | static struct platform_driver isp116x_driver = { | 1690 | static struct platform_driver isp116x_driver = { |
| 1688 | .probe = isp116x_probe, | 1691 | .probe = isp116x_probe, |
| 1689 | .remove = isp116x_remove, | 1692 | .remove = isp116x_remove, |
| 1690 | .suspend = isp116x_suspend, | 1693 | .suspend = isp116x_suspend, |
| 1691 | .resume = isp116x_resume, | 1694 | .resume = isp116x_resume, |
| 1692 | .driver = { | 1695 | .driver = { |
| 1693 | .name = (char *)hcd_name, | 1696 | .name = (char *)hcd_name, |
| 1694 | }, | 1697 | .owner = THIS_MODULE, |
| 1698 | }, | ||
| 1695 | }; | 1699 | }; |
| 1696 | 1700 | ||
| 1697 | /*-----------------------------------------------------------------*/ | 1701 | /*-----------------------------------------------------------------*/ |
diff --git a/drivers/usb/host/ohci-at91.c b/drivers/usb/host/ohci-at91.c index 126fcbdd6408..d72dc07dda01 100644 --- a/drivers/usb/host/ohci-at91.c +++ b/drivers/usb/host/ohci-at91.c | |||
| @@ -355,7 +355,7 @@ static int ohci_hcd_at91_drv_resume(struct platform_device *pdev) | |||
| 355 | #define ohci_hcd_at91_drv_resume NULL | 355 | #define ohci_hcd_at91_drv_resume NULL |
| 356 | #endif | 356 | #endif |
| 357 | 357 | ||
| 358 | MODULE_ALIAS("at91_ohci"); | 358 | MODULE_ALIAS("platform:at91_ohci"); |
| 359 | 359 | ||
| 360 | static struct platform_driver ohci_hcd_at91_driver = { | 360 | static struct platform_driver ohci_hcd_at91_driver = { |
| 361 | .probe = ohci_hcd_at91_drv_probe, | 361 | .probe = ohci_hcd_at91_drv_probe, |
| @@ -368,4 +368,3 @@ static struct platform_driver ohci_hcd_at91_driver = { | |||
| 368 | .owner = THIS_MODULE, | 368 | .owner = THIS_MODULE, |
| 369 | }, | 369 | }, |
| 370 | }; | 370 | }; |
| 371 | |||
diff --git a/drivers/usb/host/ohci-au1xxx.c b/drivers/usb/host/ohci-au1xxx.c index 663a0600b6e7..f90fe0c7373f 100644 --- a/drivers/usb/host/ohci-au1xxx.c +++ b/drivers/usb/host/ohci-au1xxx.c | |||
| @@ -345,3 +345,4 @@ static struct platform_driver ohci_hcd_au1xxx_driver = { | |||
| 345 | }, | 345 | }, |
| 346 | }; | 346 | }; |
| 347 | 347 | ||
| 348 | MODULE_ALIAS("platform:au1xxx-ohci"); | ||
diff --git a/drivers/usb/host/ohci-ep93xx.c b/drivers/usb/host/ohci-ep93xx.c index a68ce9d3c525..156e93a9d0df 100644 --- a/drivers/usb/host/ohci-ep93xx.c +++ b/drivers/usb/host/ohci-ep93xx.c | |||
| @@ -211,6 +211,8 @@ static struct platform_driver ohci_hcd_ep93xx_driver = { | |||
| 211 | #endif | 211 | #endif |
| 212 | .driver = { | 212 | .driver = { |
| 213 | .name = "ep93xx-ohci", | 213 | .name = "ep93xx-ohci", |
| 214 | .owner = THIS_MODULE, | ||
| 214 | }, | 215 | }, |
| 215 | }; | 216 | }; |
| 216 | 217 | ||
| 218 | MODULE_ALIAS("platform:ep93xx-ohci"); | ||
diff --git a/drivers/usb/host/ohci-lh7a404.c b/drivers/usb/host/ohci-lh7a404.c index 4a043abd85ea..13c12ed22252 100644 --- a/drivers/usb/host/ohci-lh7a404.c +++ b/drivers/usb/host/ohci-lh7a404.c | |||
| @@ -251,3 +251,4 @@ static struct platform_driver ohci_hcd_lh7a404_driver = { | |||
| 251 | }, | 251 | }, |
| 252 | }; | 252 | }; |
| 253 | 253 | ||
| 254 | MODULE_ALIAS("platform:lh7a404-ohci"); | ||
diff --git a/drivers/usb/host/ohci-omap.c b/drivers/usb/host/ohci-omap.c index 74e1f4be10bb..7bfca1ed1b58 100644 --- a/drivers/usb/host/ohci-omap.c +++ b/drivers/usb/host/ohci-omap.c | |||
| @@ -544,3 +544,4 @@ static struct platform_driver ohci_hcd_omap_driver = { | |||
| 544 | }, | 544 | }, |
| 545 | }; | 545 | }; |
| 546 | 546 | ||
| 547 | MODULE_ALIAS("platform:ohci"); | ||
diff --git a/drivers/usb/host/ohci-pnx4008.c b/drivers/usb/host/ohci-pnx4008.c index 6c52c66b659f..28b458f20cc3 100644 --- a/drivers/usb/host/ohci-pnx4008.c +++ b/drivers/usb/host/ohci-pnx4008.c | |||
| @@ -456,9 +456,13 @@ static int usb_hcd_pnx4008_remove(struct platform_device *pdev) | |||
| 456 | return 0; | 456 | return 0; |
| 457 | } | 457 | } |
| 458 | 458 | ||
| 459 | /* work with hotplug and coldplug */ | ||
| 460 | MODULE_ALIAS("platform:usb-ohci"); | ||
| 461 | |||
| 459 | static struct platform_driver usb_hcd_pnx4008_driver = { | 462 | static struct platform_driver usb_hcd_pnx4008_driver = { |
| 460 | .driver = { | 463 | .driver = { |
| 461 | .name = "usb-ohci", | 464 | .name = "usb-ohci", |
| 465 | .owner = THIS_MODULE, | ||
| 462 | }, | 466 | }, |
| 463 | .probe = usb_hcd_pnx4008_probe, | 467 | .probe = usb_hcd_pnx4008_probe, |
| 464 | .remove = usb_hcd_pnx4008_remove, | 468 | .remove = usb_hcd_pnx4008_remove, |
diff --git a/drivers/usb/host/ohci-pnx8550.c b/drivers/usb/host/ohci-pnx8550.c index 85fdfd2a7ad0..605d59cba28e 100644 --- a/drivers/usb/host/ohci-pnx8550.c +++ b/drivers/usb/host/ohci-pnx8550.c | |||
| @@ -230,11 +230,12 @@ static int ohci_hcd_pnx8550_drv_remove(struct platform_device *pdev) | |||
| 230 | return 0; | 230 | return 0; |
| 231 | } | 231 | } |
| 232 | 232 | ||
| 233 | MODULE_ALIAS("pnx8550-ohci"); | 233 | MODULE_ALIAS("platform:pnx8550-ohci"); |
| 234 | 234 | ||
| 235 | static struct platform_driver ohci_hcd_pnx8550_driver = { | 235 | static struct platform_driver ohci_hcd_pnx8550_driver = { |
| 236 | .driver = { | 236 | .driver = { |
| 237 | .name = "pnx8550-ohci", | 237 | .name = "pnx8550-ohci", |
| 238 | .owner = THIS_MODULE, | ||
| 238 | }, | 239 | }, |
| 239 | .probe = ohci_hcd_pnx8550_drv_probe, | 240 | .probe = ohci_hcd_pnx8550_drv_probe, |
| 240 | .remove = ohci_hcd_pnx8550_drv_remove, | 241 | .remove = ohci_hcd_pnx8550_drv_remove, |
diff --git a/drivers/usb/host/ohci-ppc-soc.c b/drivers/usb/host/ohci-ppc-soc.c index f95be1896b0d..523c30125577 100644 --- a/drivers/usb/host/ohci-ppc-soc.c +++ b/drivers/usb/host/ohci-ppc-soc.c | |||
| @@ -213,3 +213,4 @@ static struct platform_driver ohci_hcd_ppc_soc_driver = { | |||
| 213 | }, | 213 | }, |
| 214 | }; | 214 | }; |
| 215 | 215 | ||
| 216 | MODULE_ALIAS("platform:ppc-soc-ohci"); | ||
diff --git a/drivers/usb/host/ohci-pxa27x.c b/drivers/usb/host/ohci-pxa27x.c index ff9a79843471..8ad9b3b604b5 100644 --- a/drivers/usb/host/ohci-pxa27x.c +++ b/drivers/usb/host/ohci-pxa27x.c | |||
| @@ -364,6 +364,8 @@ static int ohci_hcd_pxa27x_drv_resume(struct platform_device *pdev) | |||
| 364 | } | 364 | } |
| 365 | #endif | 365 | #endif |
| 366 | 366 | ||
| 367 | /* work with hotplug and coldplug */ | ||
| 368 | MODULE_ALIAS("platform:pxa27x-ohci"); | ||
| 367 | 369 | ||
| 368 | static struct platform_driver ohci_hcd_pxa27x_driver = { | 370 | static struct platform_driver ohci_hcd_pxa27x_driver = { |
| 369 | .probe = ohci_hcd_pxa27x_drv_probe, | 371 | .probe = ohci_hcd_pxa27x_drv_probe, |
| @@ -375,6 +377,7 @@ static struct platform_driver ohci_hcd_pxa27x_driver = { | |||
| 375 | #endif | 377 | #endif |
| 376 | .driver = { | 378 | .driver = { |
| 377 | .name = "pxa27x-ohci", | 379 | .name = "pxa27x-ohci", |
| 380 | .owner = THIS_MODULE, | ||
| 378 | }, | 381 | }, |
| 379 | }; | 382 | }; |
| 380 | 383 | ||
diff --git a/drivers/usb/host/ohci-s3c2410.c b/drivers/usb/host/ohci-s3c2410.c index 44b79e8a6e25..ead4772f0f27 100644 --- a/drivers/usb/host/ohci-s3c2410.c +++ b/drivers/usb/host/ohci-s3c2410.c | |||
| @@ -501,3 +501,4 @@ static struct platform_driver ohci_hcd_s3c2410_driver = { | |||
| 501 | }, | 501 | }, |
| 502 | }; | 502 | }; |
| 503 | 503 | ||
| 504 | MODULE_ALIAS("platform:s3c2410-ohci"); | ||
diff --git a/drivers/usb/host/ohci-sh.c b/drivers/usb/host/ohci-sh.c index 5309ac039e15..e7ee607278fe 100644 --- a/drivers/usb/host/ohci-sh.c +++ b/drivers/usb/host/ohci-sh.c | |||
| @@ -141,3 +141,4 @@ static struct platform_driver ohci_hcd_sh_driver = { | |||
| 141 | }, | 141 | }, |
| 142 | }; | 142 | }; |
| 143 | 143 | ||
| 144 | MODULE_ALIAS("platform:sh_ohci"); | ||
diff --git a/drivers/usb/host/ohci-sm501.c b/drivers/usb/host/ohci-sm501.c index a97070142869..4ea92762fb28 100644 --- a/drivers/usb/host/ohci-sm501.c +++ b/drivers/usb/host/ohci-sm501.c | |||
| @@ -262,3 +262,4 @@ static struct platform_driver ohci_hcd_sm501_driver = { | |||
| 262 | .name = "sm501-usb", | 262 | .name = "sm501-usb", |
| 263 | }, | 263 | }, |
| 264 | }; | 264 | }; |
| 265 | MODULE_ALIAS("platform:sm501-usb"); | ||
diff --git a/drivers/usb/host/r8a66597-hcd.c b/drivers/usb/host/r8a66597-hcd.c index 0ce2fc5e396b..9f80e5285575 100644 --- a/drivers/usb/host/r8a66597-hcd.c +++ b/drivers/usb/host/r8a66597-hcd.c | |||
| @@ -44,6 +44,7 @@ | |||
| 44 | MODULE_DESCRIPTION("R8A66597 USB Host Controller Driver"); | 44 | MODULE_DESCRIPTION("R8A66597 USB Host Controller Driver"); |
| 45 | MODULE_LICENSE("GPL"); | 45 | MODULE_LICENSE("GPL"); |
| 46 | MODULE_AUTHOR("Yoshihiro Shimoda"); | 46 | MODULE_AUTHOR("Yoshihiro Shimoda"); |
| 47 | MODULE_ALIAS("platform:r8a66597_hcd"); | ||
| 47 | 48 | ||
| 48 | #define DRIVER_VERSION "29 May 2007" | 49 | #define DRIVER_VERSION "29 May 2007" |
| 49 | 50 | ||
| @@ -2219,6 +2220,7 @@ static struct platform_driver r8a66597_driver = { | |||
| 2219 | .resume = r8a66597_resume, | 2220 | .resume = r8a66597_resume, |
| 2220 | .driver = { | 2221 | .driver = { |
| 2221 | .name = (char *) hcd_name, | 2222 | .name = (char *) hcd_name, |
| 2223 | .owner = THIS_MODULE, | ||
| 2222 | }, | 2224 | }, |
| 2223 | }; | 2225 | }; |
| 2224 | 2226 | ||
diff --git a/drivers/usb/host/sl811-hcd.c b/drivers/usb/host/sl811-hcd.c index 59be276ccd9d..629bca0ebe8f 100644 --- a/drivers/usb/host/sl811-hcd.c +++ b/drivers/usb/host/sl811-hcd.c | |||
| @@ -58,6 +58,7 @@ | |||
| 58 | 58 | ||
| 59 | MODULE_DESCRIPTION("SL811HS USB Host Controller Driver"); | 59 | MODULE_DESCRIPTION("SL811HS USB Host Controller Driver"); |
| 60 | MODULE_LICENSE("GPL"); | 60 | MODULE_LICENSE("GPL"); |
| 61 | MODULE_ALIAS("platform:sl811-hcd"); | ||
| 61 | 62 | ||
| 62 | #define DRIVER_VERSION "19 May 2005" | 63 | #define DRIVER_VERSION "19 May 2005" |
| 63 | 64 | ||
diff --git a/drivers/usb/host/u132-hcd.c b/drivers/usb/host/u132-hcd.c index 3033d6945202..8e117a795e93 100644 --- a/drivers/usb/host/u132-hcd.c +++ b/drivers/usb/host/u132-hcd.c | |||
| @@ -3316,3 +3316,4 @@ static void __exit u132_hcd_exit(void) | |||
| 3316 | 3316 | ||
| 3317 | module_exit(u132_hcd_exit); | 3317 | module_exit(u132_hcd_exit); |
| 3318 | MODULE_LICENSE("GPL"); | 3318 | MODULE_LICENSE("GPL"); |
| 3319 | MODULE_ALIAS("platform:u132_hcd"); | ||
