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

Commit 3e1bbc56 authored by YueHaibing's avatar YueHaibing Committed by Martin K. Petersen
Browse files

scsi: wd719x: Use module_pci_driver



Remove boilerplate code by using macro module_pci_driver.

Signed-off-by: default avatarYueHaibing <yuehaibing@huawei.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 5f1c7211
Loading
Loading
Loading
Loading
+1 −12
Original line number Diff line number Diff line
@@ -978,18 +978,7 @@ static struct pci_driver wd719x_pci_driver = {
	.remove =	wd719x_pci_remove,
};

static int __init wd719x_init(void)
{
	return pci_register_driver(&wd719x_pci_driver);
}

static void __exit wd719x_exit(void)
{
	pci_unregister_driver(&wd719x_pci_driver);
}

module_init(wd719x_init);
module_exit(wd719x_exit);
module_pci_driver(wd719x_pci_driver);

MODULE_DESCRIPTION("Western Digital WD7193/7197/7296 SCSI driver");
MODULE_AUTHOR("Ondrej Zary, Aaron Dewell, Juergen Gaertner");