diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-12-21 18:04:26 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-03 18:57:14 -0500 |
commit | 47b1ea75fe072432f5b93ced21c019ed2b930c98 (patch) | |
tree | ffd01ccc67a744174717b692b9a005ce98543690 /drivers/message/fusion/mptspi.c | |
parent | 1da42fb6bf6fcddfa8981df0cf63b67c745778a6 (diff) |
Drivers: message: remove __dev* attributes.
CONFIG_HOTPLUG is going away as an option. As a result, the __dev*
markings need to be removed.
This change removes the use of __devinit, __devexit_p, __devinitdata,
and __devexit from these drivers.
Based on patches originally written by Bill Pemberton, but redone by me
in order to handle some of the coding style issues better, by hand.
Cc: Bill Pemberton <wfp5p@virginia.edu>
Cc: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
Cc: Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/message/fusion/mptspi.c')
-rw-r--r-- | drivers/message/fusion/mptspi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/message/fusion/mptspi.c b/drivers/message/fusion/mptspi.c index 8f61ba6aac23..c3aabde2dc4f 100644 --- a/drivers/message/fusion/mptspi.c +++ b/drivers/message/fusion/mptspi.c | |||
@@ -1550,7 +1550,7 @@ static struct pci_driver mptspi_driver = { | |||
1550 | .name = "mptspi", | 1550 | .name = "mptspi", |
1551 | .id_table = mptspi_pci_table, | 1551 | .id_table = mptspi_pci_table, |
1552 | .probe = mptspi_probe, | 1552 | .probe = mptspi_probe, |
1553 | .remove = __devexit_p(mptscsih_remove), | 1553 | .remove = mptscsih_remove, |
1554 | .shutdown = mptscsih_shutdown, | 1554 | .shutdown = mptscsih_shutdown, |
1555 | #ifdef CONFIG_PM | 1555 | #ifdef CONFIG_PM |
1556 | .suspend = mptscsih_suspend, | 1556 | .suspend = mptscsih_suspend, |