Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d1d6da8f authored by Richard Knutsson's avatar Richard Knutsson Committed by Greg Kroah-Hartman
Browse files

[PATCH] arch: Replace pci_module_init() with pci_register_driver()



Replace obsolete pci_module_init() with pci_register_driver().

Signed-off-by: default avatarRichard Knutsson <ricknu-0@student.ltu.se>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 065c6359
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -143,7 +143,7 @@ static int __init scx200_init(void)
{
	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)
+1 −1
Original line number Diff line number Diff line
@@ -561,7 +561,7 @@ static int __devinit vrc4173_init(void)
{
	int err;

	err = pci_module_init(&vrc4173_driver);
	err = pci_register_driver(&vrc4173_driver);
	if (err < 0)
		return err;