diff options
author | Henrik Kretzschmar <henne@nachtwindheim.de> | 2006-09-25 19:58:58 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.il.steeleye.com> | 2006-09-26 14:35:32 -0400 |
commit | dcbccbde00b85b4d4a1c206b419e7a3d2ab2b1cd (patch) | |
tree | 5abc8a69a32a4a11da0bbbda60d9b18e0300cbfb /drivers/scsi/dc395x.c | |
parent | 45223fd77c2b39d05dd7f1aaabf614abb1770bbe (diff) |
[SCSI] pci_module_init conversion in scsi subsystem
Converts pci_module_init() to pci_register_driver() in the scsi subsys on
23 drivers which only return the value of pci_module_init().
Signed-off-by: Henrik Kretzschmar <henne@nachtwindheim.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/dc395x.c')
-rw-r--r-- | drivers/scsi/dc395x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/dc395x.c b/drivers/scsi/dc395x.c index 9d7048176e77..c6118d99385e 100644 --- a/drivers/scsi/dc395x.c +++ b/drivers/scsi/dc395x.c | |||
@@ -4949,7 +4949,7 @@ static struct pci_driver dc395x_driver = { | |||
4949 | **/ | 4949 | **/ |
4950 | static int __init dc395x_module_init(void) | 4950 | static int __init dc395x_module_init(void) |
4951 | { | 4951 | { |
4952 | return pci_module_init(&dc395x_driver); | 4952 | return pci_register_driver(&dc395x_driver); |
4953 | } | 4953 | } |
4954 | 4954 | ||
4955 | 4955 | ||