Commit b81bc797 authored by Adrian Bunk's avatar Adrian Bunk Committed by Jeff Garzik

Add __devexit_p marker to orinoco_{pci,plx} wireless drivers

parent 1f8919e9
......@@ -364,9 +364,7 @@ static struct pci_driver orinoco_pci_driver = {
.name = "orinoco_pci",
.id_table = orinoco_pci_pci_id_table,
.probe = orinoco_pci_init_one,
.remove = orinoco_pci_remove_one,
.suspend = 0,
.resume = 0
.remove = __devexit_p(orinoco_pci_remove_one),
};
static int __init orinoco_pci_init(void)
......
......@@ -386,9 +386,7 @@ static struct pci_driver orinoco_plx_driver = {
.name = "orinoco_plx",
.id_table = orinoco_plx_pci_id_table,
.probe = orinoco_plx_init_one,
.remove = orinoco_plx_remove_one,
.suspend = 0,
.resume = 0
.remove = __devexit_p(orinoco_plx_remove_one),
};
static int __init orinoco_plx_init(void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment