diff options
| author | Bill Pemberton <[email protected]> | 2012-11-19 18:21:23 +0000 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2012-11-21 20:49:50 +0000 |
| commit | 2d6bed9ca93e98685bc5038d686984fd449cd978 (patch) | |
| tree | 8891b65ede778319ebb28c2aa40162a61994d852 /drivers/misc/phantom.c | |
| parent | hv: hv_balloon: mark a function static (diff) | |
| download | kernel-2d6bed9ca93e98685bc5038d686984fd449cd978.tar.gz kernel-2d6bed9ca93e98685bc5038d686984fd449cd978.zip | |
drivers/misc: 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 <[email protected]>
Cc: "Michał Mirosław" <[email protected]>
Cc: Wolfram Sang <[email protected]>
Cc: Eric Piel <[email protected]>
Cc: Jiri Slaby <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'drivers/misc/phantom.c')
| -rw-r--r-- | drivers/misc/phantom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/phantom.c b/drivers/misc/phantom.c index 21b28fc6d912..79038e9ced0f 100644 --- a/drivers/misc/phantom.c +++ b/drivers/misc/phantom.c @@ -499,7 +499,7 @@ static struct pci_driver phantom_pci_driver = { .name = "phantom", .id_table = phantom_pci_tbl, .probe = phantom_probe, - .remove = __devexit_p(phantom_remove), + .remove = phantom_remove, .suspend = phantom_suspend, .resume = phantom_resume }; |
