Skip to content

Commit

Permalink
serial: 8250_pci: remove __devexit usage
Browse files Browse the repository at this point in the history
Some __devexit markings came in from an older patch, this removes them.

Reported-by: Wu Fengguang <fengguang.wu@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Greg Kroah-Hartman committed Jan 16, 2013
1 parent fa47ba7 commit d73dfc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/tty/serial/8250/8250_pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -1283,7 +1283,7 @@ static int pci_quatech_setup(struct serial_private *priv,
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)
{
}

Expand Down Expand Up @@ -1783,7 +1783,7 @@ static struct pci_serial_quirk pci_serial_quirks[] __refdata = {
.subdevice = PCI_ANY_ID,
.init = pci_quatech_init,
.setup = pci_quatech_setup,
.exit = __devexit_p(pci_quatech_exit),
.exit = pci_quatech_exit,
},
/*
* Panacom
Expand Down

0 comments on commit d73dfc6

Please sign in to comment.