staging: pc300: remove use of __devexit_p

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>
This commit is contained in:
Bill Pemberton 2012-11-19 13:20:54 -05:00 committed by Greg Kroah-Hartman
parent 99c28f1091
commit bbe0bf96cc
1 changed files with 1 additions and 1 deletions

View File

@ -3646,7 +3646,7 @@ static struct pci_driver cpc_driver = {
.name = "pc300",
.id_table = cpc_pci_dev_id,
.probe = cpc_init_one,
.remove = __devexit_p(cpc_remove_one),
.remove = cpc_remove_one,
};
static int __init cpc_init(void)