Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 93953
b: refs/heads/master
c: ecc1241
h: refs/heads/master
i:
  93951: 3d9b405
v: v3
  • Loading branch information
Kay Sievers authored and James Bottomley committed Apr 27, 2008
1 parent c841ddb commit 8be6fed
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 980b306a297725d4f25c779ca15086de757acadf
refs/heads/master: ecc1241e80a0bdc854b1602a44be3ad106753d4f
4 changes: 4 additions & 0 deletions trunk/drivers/scsi/jazz_esp.c
Original file line number Diff line number Diff line change
Expand Up @@ -217,11 +217,15 @@ static int __devexit esp_jazz_remove(struct platform_device *dev)
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,
},
};

Expand Down
4 changes: 3 additions & 1 deletion trunk/drivers/scsi/sgiwd93.c
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,8 @@ static struct platform_driver sgiwd93_driver = {
.probe = sgiwd93_probe,
.remove = __devexit_p(sgiwd93_remove),
.driver = {
.name = "sgiwd93"
.name = "sgiwd93",
.owner = THIS_MODULE,
}
};

Expand All @@ -333,3 +334,4 @@ module_exit(sgiwd93_module_exit);
MODULE_DESCRIPTION("SGI WD33C93 driver");
MODULE_AUTHOR("Ralf Baechle <ralf@linux-mips.org>");
MODULE_LICENSE("GPL");
MODULE_ALIAS("platform:sgiwd93");
2 changes: 2 additions & 0 deletions trunk/drivers/scsi/sni_53c710.c
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -136,6 +137,7 @@ static struct platform_driver snirm710_driver = {
.remove = __devexit_p(snirm710_driver_remove),
.driver = {
.name = "snirm_53c710",
.owner = THIS_MODULE,
},
};

Expand Down
2 changes: 2 additions & 0 deletions trunk/drivers/scsi/sun3x_esp.c
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,7 @@ static struct platform_driver esp_sun3x_driver = {
.remove = __devexit_p(esp_sun3x_remove),
.driver = {
.name = "sun3x_esp",
.owner = THIS_MODULE,
},
};

Expand All @@ -314,3 +315,4 @@ MODULE_VERSION(DRV_VERSION);

module_init(sun3x_esp_init);
module_exit(sun3x_esp_exit);
MODULE_ALIAS("platform:sun3x_esp");

0 comments on commit 8be6fed

Please sign in to comment.