diff options
| author | Bill Pemberton <[email protected]> | 2012-11-19 13:26:49 -0500 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2012-11-21 15:05:12 -0800 |
| commit | 361a2018596604e8e101aa86f296026760a705e1 (patch) | |
| tree | 494b89adfc4a2453e39e52979cb83a32697ac1c3 | |
| parent | ecb4f3879d197ed8c248592acfc2741280d20045 (diff) | |
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 <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
| -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 3c0ba60ec4f2..0764bbbfd497 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; |