diff options
author | Kay Sievers <kay.sievers@vrfy.org> | 2008-04-18 16:57:19 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-04-27 13:33:04 -0400 |
commit | ecc1241e80a0bdc854b1602a44be3ad106753d4f (patch) | |
tree | 8033fabd18415681378506c0c4e597a3a6675f66 /drivers/scsi/sun3x_esp.c | |
parent | 980b306a297725d4f25c779ca15086de757acadf (diff) |
[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>
Diffstat (limited to 'drivers/scsi/sun3x_esp.c')
-rw-r--r-- | drivers/scsi/sun3x_esp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/scsi/sun3x_esp.c b/drivers/scsi/sun3x_esp.c index 06152c7fa689..7514b3a0390e 100644 --- a/drivers/scsi/sun3x_esp.c +++ b/drivers/scsi/sun3x_esp.c | |||
@@ -294,6 +294,7 @@ static struct platform_driver esp_sun3x_driver = { | |||
294 | .remove = __devexit_p(esp_sun3x_remove), | 294 | .remove = __devexit_p(esp_sun3x_remove), |
295 | .driver = { | 295 | .driver = { |
296 | .name = "sun3x_esp", | 296 | .name = "sun3x_esp", |
297 | .owner = THIS_MODULE, | ||
297 | }, | 298 | }, |
298 | }; | 299 | }; |
299 | 300 | ||
@@ -314,3 +315,4 @@ MODULE_VERSION(DRV_VERSION); | |||
314 | 315 | ||
315 | module_init(sun3x_esp_init); | 316 | module_init(sun3x_esp_init); |
316 | module_exit(sun3x_esp_exit); | 317 | module_exit(sun3x_esp_exit); |
318 | MODULE_ALIAS("platform:sun3x_esp"); | ||