Skip to content

Commit

Permalink
ipack: remove use of __devexit_p
Browse files Browse the repository at this point in the history
CONFIG_HOTPLUG is going away as an option so __devexit_p is no longer
needed.

Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Nov 21, 2012
1 parent 0d7fe14 commit c5dee46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/ipack/carriers/tpci200.c
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ static struct pci_driver tpci200_pci_drv = {
.name = "tpci200",
.id_table = tpci200_idtable,
.probe = tpci200_pci_probe,
.remove = __devexit_p(tpci200_pci_remove),
.remove = tpci200_pci_remove,
};

module_pci_driver(tpci200_pci_drv);
Expand Down

0 comments on commit c5dee46

Please sign in to comment.