diff options
| author | 2012-11-19 13:26:08 -0500 | |
|---|---|---|
| committer | 2012-11-28 12:12:32 -0800 | |
| commit | b1f7c8cc1b4619f3dfd9f36bcfd35a0f4ce0cd13 (patch) | |
| tree | edb33f5e1c2ed3ca54637a3803c69d3617aa3983 /drivers/ptp | |
| parent | ptp: remove use of __devinit (diff) | |
| download | linux-dev-b1f7c8cc1b4619f3dfd9f36bcfd35a0f4ce0cd13.tar.xz linux-dev-b1f7c8cc1b4619f3dfd9f36bcfd35a0f4ce0cd13.zip | |
ptp: remove use of __devexit
CONFIG_HOTPLUG is going away as an option so __devexit is no
longer needed.
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Acked-by: Richard Cochran <richardcochran@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/ptp')
| -rw-r--r-- | drivers/ptp/ptp_pch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ptp/ptp_pch.c b/drivers/ptp/ptp_pch.c index 304cec21bc42..1367655eee39 100644 --- a/drivers/ptp/ptp_pch.c +++ b/drivers/ptp/ptp_pch.c @@ -557,7 +557,7 @@ static s32 pch_resume(struct pci_dev *pdev) #define pch_resume NULL #endif -static void __devexit pch_remove(struct pci_dev *pdev) +static void pch_remove(struct pci_dev *pdev) { struct pch_dev *chip = pci_get_drvdata(pdev); |
