diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:20:50 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-21 13:57:25 -0800 |
commit | 0b5e4092241eb4015a91e01d9aca32c214ea8b50 (patch) | |
tree | a2da6254895f1b97ee0a4567ba2e4fee25bd357e /drivers/staging/et131x | |
parent | fe5c49b3325e38dd350fc3ceaf30b8f8a3f136b8 (diff) | |
download | linux-0b5e4092241eb4015a91e01d9aca32c214ea8b50.tar.bz2 |
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>
Diffstat (limited to 'drivers/staging/et131x')
-rw-r--r-- | drivers/staging/et131x/et131x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/et131x/et131x.c b/drivers/staging/et131x/et131x.c index d017e67d2ffa..525a7cbec1c9 100644 --- a/drivers/staging/et131x/et131x.c +++ b/drivers/staging/et131x/et131x.c @@ -5099,7 +5099,7 @@ static struct pci_driver et131x_driver = { .name = DRIVER_NAME, .id_table = et131x_pci_table, .probe = et131x_pci_setup, - .remove = __devexit_p(et131x_pci_remove), + .remove = et131x_pci_remove, .driver.pm = ET131X_PM_OPS, }; |