forked from Minki/linux
qla3xxx: remove __dev* attributes
CONFIG_HOTPLUG is going away as an option. As result the __dev* markings will be going away. Remove use of __devinit, __devexit_p, __devinitdata, __devinitconst, and __devexit. Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Cc: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com> Cc: Ron Mercer <ron.mercer@qlogic.com> Cc: linux-driver@qlogic.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
6bb58bb0af
commit
e3a582feac
@ -3769,7 +3769,7 @@ static const struct net_device_ops ql3xxx_netdev_ops = {
|
||||
.ndo_tx_timeout = ql3xxx_tx_timeout,
|
||||
};
|
||||
|
||||
static int __devinit ql3xxx_probe(struct pci_dev *pdev,
|
||||
static int ql3xxx_probe(struct pci_dev *pdev,
|
||||
const struct pci_device_id *pci_entry)
|
||||
{
|
||||
struct net_device *ndev = NULL;
|
||||
@ -3925,7 +3925,7 @@ err_out:
|
||||
return err;
|
||||
}
|
||||
|
||||
static void __devexit ql3xxx_remove(struct pci_dev *pdev)
|
||||
static void ql3xxx_remove(struct pci_dev *pdev)
|
||||
{
|
||||
struct net_device *ndev = pci_get_drvdata(pdev);
|
||||
struct ql3_adapter *qdev = netdev_priv(ndev);
|
||||
@ -3952,7 +3952,7 @@ static struct pci_driver ql3xxx_driver = {
|
||||
.name = DRV_NAME,
|
||||
.id_table = ql3xxx_pci_tbl,
|
||||
.probe = ql3xxx_probe,
|
||||
.remove = __devexit_p(ql3xxx_remove),
|
||||
.remove = ql3xxx_remove,
|
||||
};
|
||||
|
||||
module_pci_driver(ql3xxx_driver);
|
||||
|
Loading…
Reference in New Issue
Block a user