From: Bartlomiej Zolnierkiewicz Date: Thu, 24 Jul 2008 20:53:22 +0000 (+0200) Subject: it8213: add ->remove method and module_exit() X-Git-Tag: v3.12-rc1~19502^2~47 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5102f768570b3486979afb68c595b71cfb7f026f;p=kernel%2Fkernel-generic.git it8213: add ->remove method and module_exit() Signed-off-by: Bartlomiej Zolnierkiewicz --- diff --git a/drivers/ide/pci/it8213.c b/drivers/ide/pci/it8213.c index 18219fa..575bf23 100644 --- a/drivers/ide/pci/it8213.c +++ b/drivers/ide/pci/it8213.c @@ -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");