Commit d73dfc6a authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

serial: 8250_pci: remove __devexit usage

Some __devexit markings came in from an older patch, this removes them.
Reported-by: default avatarWu Fengguang <fengguang.wu@intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent fa47ba75
...@@ -1283,7 +1283,7 @@ static int pci_quatech_setup(struct serial_private *priv, ...@@ -1283,7 +1283,7 @@ static int pci_quatech_setup(struct serial_private *priv,
return pci_default_setup(priv, board, port, idx); return pci_default_setup(priv, board, port, idx);
} }
static void __devexit pci_quatech_exit(struct pci_dev *dev) static void pci_quatech_exit(struct pci_dev *dev)
{ {
} }
...@@ -1783,7 +1783,7 @@ static struct pci_serial_quirk pci_serial_quirks[] __refdata = { ...@@ -1783,7 +1783,7 @@ static struct pci_serial_quirk pci_serial_quirks[] __refdata = {
.subdevice = PCI_ANY_ID, .subdevice = PCI_ANY_ID,
.init = pci_quatech_init, .init = pci_quatech_init,
.setup = pci_quatech_setup, .setup = pci_quatech_setup,
.exit = __devexit_p(pci_quatech_exit), .exit = pci_quatech_exit,
}, },
/* /*
* Panacom * Panacom
......
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