浏览代码

[SCSI] jazz_esp, sgiwd93, sni_53c710, sun3x_esp: fix platform driver hotplug/coldplug

Since

commit 43cc71eed1250755986da4c0f9898f9a635cb3bf
Author: Kay Sievers <kay.sievers@vrfy.org>
Date:   Sat Aug 18 04:40:39 2007 +0200

    platform: prefix MODALIAS with "platform:"

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]
[akpm@linux-foundation.org: fix sgiwd93.c]
Signed-off-by: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Kay Sievers 17 年之前
父节点
当前提交
ecc1241e80
共有 4 个文件被更改,包括 11 次插入1 次删除
  1. 4 0
      drivers/scsi/jazz_esp.c
  2. 3 1
      drivers/scsi/sgiwd93.c
  3. 2 0
      drivers/scsi/sni_53c710.c
  4. 2 0
      drivers/scsi/sun3x_esp.c

+ 4 - 0
drivers/scsi/jazz_esp.c

@@ -217,11 +217,15 @@ static int __devexit esp_jazz_remove(struct platform_device *dev)
 	return 0;
 	return 0;
 }
 }
 
 
+/* work with hotplug and coldplug */
+MODULE_ALIAS("platform:jazz_esp");
+
 static struct platform_driver esp_jazz_driver = {
 static struct platform_driver esp_jazz_driver = {
 	.probe		= esp_jazz_probe,
 	.probe		= esp_jazz_probe,
 	.remove		= __devexit_p(esp_jazz_remove),
 	.remove		= __devexit_p(esp_jazz_remove),
 	.driver	= {
 	.driver	= {
 		.name	= "jazz_esp",
 		.name	= "jazz_esp",
+		.owner	= THIS_MODULE,
 	},
 	},
 };
 };
 
 

+ 3 - 1
drivers/scsi/sgiwd93.c

@@ -313,7 +313,8 @@ static struct platform_driver sgiwd93_driver = {
 	.probe  = sgiwd93_probe,
 	.probe  = sgiwd93_probe,
 	.remove = __devexit_p(sgiwd93_remove),
 	.remove = __devexit_p(sgiwd93_remove),
 	.driver = {
 	.driver = {
-		.name   = "sgiwd93"
+		.name   = "sgiwd93",
+		.owner	= THIS_MODULE,
 	}
 	}
 };
 };
 
 
@@ -333,3 +334,4 @@ module_exit(sgiwd93_module_exit);
 MODULE_DESCRIPTION("SGI WD33C93 driver");
 MODULE_DESCRIPTION("SGI WD33C93 driver");
 MODULE_AUTHOR("Ralf Baechle <ralf@linux-mips.org>");
 MODULE_AUTHOR("Ralf Baechle <ralf@linux-mips.org>");
 MODULE_LICENSE("GPL");
 MODULE_LICENSE("GPL");
+MODULE_ALIAS("platform:sgiwd93");

+ 2 - 0
drivers/scsi/sni_53c710.c

@@ -53,6 +53,7 @@
 MODULE_AUTHOR("Thomas Bogendörfer");
 MODULE_AUTHOR("Thomas Bogendörfer");
 MODULE_DESCRIPTION("SNI RM 53c710 SCSI Driver");
 MODULE_DESCRIPTION("SNI RM 53c710 SCSI Driver");
 MODULE_LICENSE("GPL");
 MODULE_LICENSE("GPL");
+MODULE_ALIAS("platform:snirm_53c710");
 
 
 #define SNIRM710_CLOCK	32
 #define SNIRM710_CLOCK	32
 
 
@@ -136,6 +137,7 @@ static struct platform_driver snirm710_driver = {
 	.remove	= __devexit_p(snirm710_driver_remove),
 	.remove	= __devexit_p(snirm710_driver_remove),
 	.driver	= {
 	.driver	= {
 		.name	= "snirm_53c710",
 		.name	= "snirm_53c710",
+		.owner	= THIS_MODULE,
 	},
 	},
 };
 };
 
 

+ 2 - 0
drivers/scsi/sun3x_esp.c

@@ -294,6 +294,7 @@ static struct platform_driver esp_sun3x_driver = {
 	.remove         = __devexit_p(esp_sun3x_remove),
 	.remove         = __devexit_p(esp_sun3x_remove),
 	.driver = {
 	.driver = {
 		.name   = "sun3x_esp",
 		.name   = "sun3x_esp",
+		.owner	= THIS_MODULE,
 	},
 	},
 };
 };
 
 
@@ -314,3 +315,4 @@ MODULE_VERSION(DRV_VERSION);
 
 
 module_init(sun3x_esp_init);
 module_init(sun3x_esp_init);
 module_exit(sun3x_esp_exit);
 module_exit(sun3x_esp_exit);
+MODULE_ALIAS("platform:sun3x_esp");