Commit 7348d519 authored by Dave Jones's avatar Dave Jones

[PATCH] devexit fix for i82092

In light of the 'lets use this for shutdowns' this will eventually
be ripped out, but for now it makes sense to include it so that we
can build it again on modern binutils
parent 531b536d
......@@ -43,7 +43,7 @@ static struct pci_driver i82092aa_pci_drv = {
name: "i82092aa",
id_table: i82092aa_pci_ids,
probe: i82092aa_pci_probe,
remove: i82092aa_pci_remove,
remove: __devexit_p(i82092aa_pci_remove),
suspend: NULL,
resume: NULL
};
......@@ -168,7 +168,7 @@ static int __init i82092aa_pci_probe(struct pci_dev *dev, const struct pci_devic
return ret;
}
static void __exit i82092aa_pci_remove(struct pci_dev *dev)
static void __devexit i82092aa_pci_remove(struct pci_dev *dev)
{
enter("i82092aa_pci_remove");
......
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