You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
wireless: 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> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
committed by
John W. Linville
parent
9e2b29d0d6
commit
04bfffb805
@@ -78,7 +78,7 @@ static struct pci_driver airo_driver = {
|
||||
.name = DRV_NAME,
|
||||
.id_table = card_ids,
|
||||
.probe = airo_pci_probe,
|
||||
.remove = __devexit_p(airo_pci_remove),
|
||||
.remove = airo_pci_remove,
|
||||
.suspend = airo_pci_suspend,
|
||||
.resume = airo_pci_resume,
|
||||
};
|
||||
@@ -5584,7 +5584,7 @@ static void timer_func( struct net_device *dev ) {
|
||||
}
|
||||
|
||||
#ifdef CONFIG_PCI
|
||||
static int __devinit airo_pci_probe(struct pci_dev *pdev,
|
||||
static int airo_pci_probe(struct pci_dev *pdev,
|
||||
const struct pci_device_id *pent)
|
||||
{
|
||||
struct net_device *dev;
|
||||
@@ -5606,7 +5606,7 @@ static int __devinit airo_pci_probe(struct pci_dev *pdev,
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void __devexit airo_pci_remove(struct pci_dev *pdev)
|
||||
static void airo_pci_remove(struct pci_dev *pdev)
|
||||
{
|
||||
struct net_device *dev = pci_get_drvdata(pdev);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user