Skip to content

Commit

Permalink
ns87415: add ->remove method and module_exit()
Browse files Browse the repository at this point in the history
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
  • Loading branch information
Bartlomiej Zolnierkiewicz committed Jul 24, 2008
1 parent 1bcaaba commit aa6e518
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions drivers/ide/pci/ns87415.c
Original file line number Diff line number Diff line change
Expand Up @@ -337,14 +337,21 @@ static struct pci_driver driver = {
.name = "NS87415_IDE",
.id_table = ns87415_pci_tbl,
.probe = ns87415_init_one,
.remove = ide_pci_remove,
};

static int __init ns87415_ide_init(void)
{
return ide_pci_register_driver(&driver);
}

static void __exit ns87415_ide_exit(void)
{
pci_unregister_driver(&driver);
}

module_init(ns87415_ide_init);
module_exit(ns87415_ide_exit);

MODULE_AUTHOR("Mark Lord, Eddie Dost, Andre Hedrick");
MODULE_DESCRIPTION("PCI driver module for NS87415 IDE");
Expand Down

0 comments on commit aa6e518

Please sign in to comment.