diff options
author | Richard Knutsson <ricknu-0@student.ltu.se> | 2005-11-29 19:00:35 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-01-09 15:13:23 -0500 |
commit | 93b47684f60cf25e8cefe19a21d94aa0257fdf36 (patch) | |
tree | f89ab5a9197cf9bb771a556f8b48989416848dce /drivers/parport | |
parent | 46654728b55bf5d09dc91fa45f532131d8a609f2 (diff) |
[PATCH] drivers/*rest*: Replace pci_module_init() with pci_register_driver()
Replace obsolete pci_module_init() with pci_register_driver().
Signed-off-by: Richard Knutsson <ricknu-0@student.ltu.se>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/parport')
-rw-r--r-- | drivers/parport/parport_serial.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/parport/parport_serial.c b/drivers/parport/parport_serial.c index d3dad0aac7cb..76dd077e3184 100644 --- a/drivers/parport/parport_serial.c +++ b/drivers/parport/parport_serial.c | |||
@@ -464,7 +464,7 @@ static struct pci_driver parport_serial_pci_driver = { | |||
464 | 464 | ||
465 | static int __init parport_serial_init (void) | 465 | static int __init parport_serial_init (void) |
466 | { | 466 | { |
467 | return pci_module_init (&parport_serial_pci_driver); | 467 | return pci_register_driver (&parport_serial_pci_driver); |
468 | } | 468 | } |
469 | 469 | ||
470 | static void __exit parport_serial_exit (void) | 470 | static void __exit parport_serial_exit (void) |