1
0
Fork 0

it8213: add ->remove method and module_exit()

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
hifive-unleashed-5.1
Bartlomiej Zolnierkiewicz 2008-07-24 22:53:22 +02:00
parent a6c43a2be9
commit 5102f76857
1 changed files with 7 additions and 0 deletions

View File

@ -198,6 +198,7 @@ static struct pci_driver driver = {
.name = "ITE8213_IDE",
.id_table = it8213_pci_tbl,
.probe = it8213_init_one,
.remove = ide_pci_remove,
};
static int __init it8213_ide_init(void)
@ -205,7 +206,13 @@ static int __init it8213_ide_init(void)
return ide_pci_register_driver(&driver);
}
static void __exit it8213_ide_exit(void)
{
pci_unregister_driver(&driver);
}
module_init(it8213_ide_init);
module_exit(it8213_ide_exit);
MODULE_AUTHOR("Jack Lee, Alan Cox");
MODULE_DESCRIPTION("PCI driver module for the ITE 8213");