diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 18:26:49 (GMT) |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-21 23:05:12 (GMT) |
commit | 361a2018596604e8e101aa86f296026760a705e1 (patch) | |
tree | 494b89adfc4a2453e39e52979cb83a32697ac1c3 /drivers/staging/sm7xxfb | |
parent | ecb4f3879d197ed8c248592acfc2741280d20045 (diff) | |
download | linux-fsl-qoriq-361a2018596604e8e101aa86f296026760a705e1.tar.xz |
staging: sm7xxfb: 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>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/sm7xxfb')
-rw-r--r-- | drivers/staging/sm7xxfb/sm7xxfb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/sm7xxfb/sm7xxfb.c b/drivers/staging/sm7xxfb/sm7xxfb.c index 3c0ba60..0764bbb 100644 --- a/drivers/staging/sm7xxfb/sm7xxfb.c +++ b/drivers/staging/sm7xxfb/sm7xxfb.c @@ -928,7 +928,7 @@ static DEFINE_PCI_DEVICE_TABLE(smtcfb_pci_table) = { {0,} }; -static void __devexit smtcfb_pci_remove(struct pci_dev *pdev) +static void smtcfb_pci_remove(struct pci_dev *pdev) { struct smtcfb_info *sfb; |