[PATCH] drivers/sound/oss: Replace pci_module_init() with pci_register_driver()

Replace obsolete pci_module_init() with pci_register_driver().

Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Richard Knutsson <ricknu-0@student.ltu.se>
This commit is contained in:
Greg Kroah-Hartman
2005-12-06 15:33:15 -08:00
parent 9bfab8cec6
commit 46654728b5
16 changed files with 16 additions and 16 deletions

View File

@@ -2765,7 +2765,7 @@ static int __init init_sonicvibes(void)
if (!(wavetable_mem = __get_free_pages(GFP_KERNEL, 20-PAGE_SHIFT)))
printk(KERN_INFO "sv: cannot allocate 1MB of contiguous nonpageable memory for wavetable data\n");
#endif
return pci_module_init(&sv_driver);
return pci_register_driver(&sv_driver);
}
static void __exit cleanup_sonicvibes(void)