mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
triflex: add ->remove method and module_exit()
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
This commit is contained in:
parent
ea881d6d6c
commit
29d72f2df9
@ -117,6 +117,7 @@ static struct pci_driver driver = {
|
|||||||
.name = "TRIFLEX_IDE",
|
.name = "TRIFLEX_IDE",
|
||||||
.id_table = triflex_pci_tbl,
|
.id_table = triflex_pci_tbl,
|
||||||
.probe = triflex_init_one,
|
.probe = triflex_init_one,
|
||||||
|
.remove = ide_pci_remove,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int __init triflex_ide_init(void)
|
static int __init triflex_ide_init(void)
|
||||||
@ -124,7 +125,13 @@ static int __init triflex_ide_init(void)
|
|||||||
return ide_pci_register_driver(&driver);
|
return ide_pci_register_driver(&driver);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void __exit triflex_ide_exit(void)
|
||||||
|
{
|
||||||
|
pci_unregister_driver(&driver);
|
||||||
|
}
|
||||||
|
|
||||||
module_init(triflex_ide_init);
|
module_init(triflex_ide_init);
|
||||||
|
module_exit(triflex_ide_exit);
|
||||||
|
|
||||||
MODULE_AUTHOR("Torben Mathiasen");
|
MODULE_AUTHOR("Torben Mathiasen");
|
||||||
MODULE_DESCRIPTION("PCI driver module for Compaq Triflex IDE");
|
MODULE_DESCRIPTION("PCI driver module for Compaq Triflex IDE");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user