2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2024-12-26 06:04:14 +08:00

staging: et131x: 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>
Cc: devel@driverdev.osuosl.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Bill Pemberton 2012-11-19 13:20:50 -05:00 committed by Greg Kroah-Hartman
parent fe5c49b332
commit 0b5e409224

View File

@ -5099,7 +5099,7 @@ static struct pci_driver et131x_driver = {
.name = DRIVER_NAME, .name = DRIVER_NAME,
.id_table = et131x_pci_table, .id_table = et131x_pci_table,
.probe = et131x_pci_setup, .probe = et131x_pci_setup,
.remove = __devexit_p(et131x_pci_remove), .remove = et131x_pci_remove,
.driver.pm = ET131X_PM_OPS, .driver.pm = ET131X_PM_OPS,
}; };