drivers/memstick/host/r592.c: convert to module_pci_driver

Signed-off-by: Libo Chen <libo.chen@huawei.com>
Cc: Maxim Levitsky <maximlevitsky@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Libo Chen 2013-07-03 15:09:14 -07:00 committed by Linus Torvalds
parent 10560490d9
commit 5af1a9ce3d

View file

@ -884,18 +884,7 @@ static struct pci_driver r852_pci_driver = {
.driver.pm = &r592_pm_ops,
};
static __init int r592_module_init(void)
{
return pci_register_driver(&r852_pci_driver);
}
static void __exit r592_module_exit(void)
{
pci_unregister_driver(&r852_pci_driver);
}
module_init(r592_module_init);
module_exit(r592_module_exit);
module_pci_driver(r852_pci_driver);
module_param_named(enable_dma, r592_enable_dma, bool, S_IRUGO);
MODULE_PARM_DESC(enable_dma, "Enable usage of the DMA (default)");