mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
scsi: wd719x: Use module_pci_driver
Remove boilerplate code by using macro module_pci_driver. Signed-off-by: YueHaibing <yuehaibing@huawei.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
5f1c721196
commit
3e1bbc5685
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user