From: Kay Sievers Since 43cc71eed1250755986da4c0f9898f9a635cb3bf, the platform modalias is prefixed with "platform:". Add MODULE_ALIAS() to the hotpluggable SCSI platform drivers, to re-enable auto loading. [dbrownell@users.sourceforge.net: more drivers, registration fixes] Signed-off-by: Kay Sievers Signed-off-by: David Brownell Cc: James Bottomley Signed-off-by: Andrew Morton --- drivers/scsi/jazz_esp.c | 4 ++++ drivers/scsi/sgiwd93.c | 2 ++ drivers/scsi/sni_53c710.c | 2 ++ drivers/scsi/sun3x_esp.c | 2 ++ 4 files changed, 10 insertions(+) diff -puN drivers/scsi/jazz_esp.c~scsi-fix-platform-driver-hotplug-coldplug drivers/scsi/jazz_esp.c --- a/drivers/scsi/jazz_esp.c~scsi-fix-platform-driver-hotplug-coldplug +++ a/drivers/scsi/jazz_esp.c @@ -217,11 +217,15 @@ static int __devexit esp_jazz_remove(str return 0; } +/* work with hotplug and coldplug */ +MODULE_ALIAS("platform:jazz_esp"); + static struct platform_driver esp_jazz_driver = { .probe = esp_jazz_probe, .remove = __devexit_p(esp_jazz_remove), .driver = { .name = "jazz_esp", + .owner = THIS_MODULE, }, }; diff -puN drivers/scsi/sgiwd93.c~scsi-fix-platform-driver-hotplug-coldplug drivers/scsi/sgiwd93.c --- a/drivers/scsi/sgiwd93.c~scsi-fix-platform-driver-hotplug-coldplug +++ a/drivers/scsi/sgiwd93.c @@ -314,6 +314,7 @@ static struct platform_driver sgiwd93_dr .remove = __devexit_p(sgiwd93_remove), .driver = { .name = "sgiwd93" + .owner = THIS_MODULE, } }; @@ -333,3 +334,4 @@ module_exit(sgiwd93_module_exit); MODULE_DESCRIPTION("SGI WD33C93 driver"); MODULE_AUTHOR("Ralf Baechle "); MODULE_LICENSE("GPL"); +MODULE_ALIAS("platform:sgiwd93"); diff -puN drivers/scsi/sni_53c710.c~scsi-fix-platform-driver-hotplug-coldplug drivers/scsi/sni_53c710.c --- a/drivers/scsi/sni_53c710.c~scsi-fix-platform-driver-hotplug-coldplug +++ a/drivers/scsi/sni_53c710.c @@ -53,6 +53,7 @@ MODULE_AUTHOR("Thomas Bogendörfer"); MODULE_DESCRIPTION("SNI RM 53c710 SCSI Driver"); MODULE_LICENSE("GPL"); +MODULE_ALIAS("platform:snirm_53c710"); #define SNIRM710_CLOCK 32 @@ -136,6 +137,7 @@ static struct platform_driver snirm710_d .remove = __devexit_p(snirm710_driver_remove), .driver = { .name = "snirm_53c710", + .owner = THIS_MODULE, }, }; diff -puN drivers/scsi/sun3x_esp.c~scsi-fix-platform-driver-hotplug-coldplug drivers/scsi/sun3x_esp.c --- a/drivers/scsi/sun3x_esp.c~scsi-fix-platform-driver-hotplug-coldplug +++ a/drivers/scsi/sun3x_esp.c @@ -294,6 +294,7 @@ static struct platform_driver esp_sun3x_ .remove = __devexit_p(esp_sun3x_remove), .driver = { .name = "sun3x_esp", + .owner = THIS_MODULE, }, }; @@ -314,3 +315,4 @@ MODULE_VERSION(DRV_VERSION); module_init(sun3x_esp_init); module_exit(sun3x_esp_exit); +MODULE_ALIAS("platform:sun3x_esp"); _