[PATCH] arch: 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>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
065c635907
commit
d1d6da8f9f
@@ -143,7 +143,7 @@ static int __init scx200_init(void)
|
|||||||
{
|
{
|
||||||
printk(KERN_INFO NAME ": NatSemi SCx200 Driver\n");
|
printk(KERN_INFO NAME ": NatSemi SCx200 Driver\n");
|
||||||
|
|
||||||
return pci_module_init(&scx200_pci_driver);
|
return pci_register_driver(&scx200_pci_driver);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void __exit scx200_cleanup(void)
|
static void __exit scx200_cleanup(void)
|
||||||
|
@@ -561,7 +561,7 @@ static int __devinit vrc4173_init(void)
|
|||||||
{
|
{
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
err = pci_module_init(&vrc4173_driver);
|
err = pci_register_driver(&vrc4173_driver);
|
||||||
if (err < 0)
|
if (err < 0)
|
||||||
return err;
|
return err;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user