diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-07-24 16:53:22 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-07-24 16:53:22 -0400 |
commit | 5102f768570b3486979afb68c595b71cfb7f026f (patch) | |
tree | cc14bf25e4a39f7d5601947796855e634c64c42e | |
parent | a6c43a2be9721d00ef9d6ef5b7b0e8113444577b (diff) |
it8213: add ->remove method and module_exit()
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
-rw-r--r-- | drivers/ide/pci/it8213.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/ide/pci/it8213.c b/drivers/ide/pci/it8213.c index 18219fa9ef01..575bf2386f8e 100644 --- a/drivers/ide/pci/it8213.c +++ b/drivers/ide/pci/it8213.c | |||
@@ -198,6 +198,7 @@ static struct pci_driver driver = { | |||
198 | .name = "ITE8213_IDE", | 198 | .name = "ITE8213_IDE", |
199 | .id_table = it8213_pci_tbl, | 199 | .id_table = it8213_pci_tbl, |
200 | .probe = it8213_init_one, | 200 | .probe = it8213_init_one, |
201 | .remove = ide_pci_remove, | ||
201 | }; | 202 | }; |
202 | 203 | ||
203 | static int __init it8213_ide_init(void) | 204 | static int __init it8213_ide_init(void) |
@@ -205,7 +206,13 @@ static int __init it8213_ide_init(void) | |||
205 | return ide_pci_register_driver(&driver); | 206 | return ide_pci_register_driver(&driver); |
206 | } | 207 | } |
207 | 208 | ||
209 | static void __exit it8213_ide_exit(void) | ||
210 | { | ||
211 | pci_unregister_driver(&driver); | ||
212 | } | ||
213 | |||
208 | module_init(it8213_ide_init); | 214 | module_init(it8213_ide_init); |
215 | module_exit(it8213_ide_exit); | ||
209 | 216 | ||
210 | MODULE_AUTHOR("Jack Lee, Alan Cox"); | 217 | MODULE_AUTHOR("Jack Lee, Alan Cox"); |
211 | MODULE_DESCRIPTION("PCI driver module for the ITE 8213"); | 218 | MODULE_DESCRIPTION("PCI driver module for the ITE 8213"); |