Commit ba1abdbf authored by Linus Torvalds's avatar Linus Torvalds

Merge bk://bk.arm.linux.org.uk/linux-2.6-serial

into ppc970.osdl.org:/home/torvalds/v2.6/linux
parents 64a3243b 8d7f0412
...@@ -704,7 +704,7 @@ static struct pci_serial_quirk pci_serial_quirks[] = { ...@@ -704,7 +704,7 @@ static struct pci_serial_quirk pci_serial_quirks[] = {
.subdevice = PCI_SUBDEVICE_ID_OCTPRO232, .subdevice = PCI_SUBDEVICE_ID_OCTPRO232,
.init = sbs_init, .init = sbs_init,
.setup = sbs_setup, .setup = sbs_setup,
.exit = sbs_exit .exit = __devexit_p(sbs_exit),
}, },
/* /*
* SBS Technologies, Inc., PMC-OCTALPRO 422 * SBS Technologies, Inc., PMC-OCTALPRO 422
...@@ -716,7 +716,7 @@ static struct pci_serial_quirk pci_serial_quirks[] = { ...@@ -716,7 +716,7 @@ static struct pci_serial_quirk pci_serial_quirks[] = {
.subdevice = PCI_SUBDEVICE_ID_OCTPRO422, .subdevice = PCI_SUBDEVICE_ID_OCTPRO422,
.init = sbs_init, .init = sbs_init,
.setup = sbs_setup, .setup = sbs_setup,
.exit = sbs_exit .exit = __devexit_p(sbs_exit),
}, },
/* /*
* SBS Technologies, Inc., P-Octal 232 * SBS Technologies, Inc., P-Octal 232
...@@ -728,7 +728,7 @@ static struct pci_serial_quirk pci_serial_quirks[] = { ...@@ -728,7 +728,7 @@ static struct pci_serial_quirk pci_serial_quirks[] = {
.subdevice = PCI_SUBDEVICE_ID_POCTAL232, .subdevice = PCI_SUBDEVICE_ID_POCTAL232,
.init = sbs_init, .init = sbs_init,
.setup = sbs_setup, .setup = sbs_setup,
.exit = sbs_exit .exit = __devexit_p(sbs_exit),
}, },
/* /*
* SBS Technologies, Inc., P-Octal 422 * SBS Technologies, Inc., P-Octal 422
...@@ -740,7 +740,7 @@ static struct pci_serial_quirk pci_serial_quirks[] = { ...@@ -740,7 +740,7 @@ static struct pci_serial_quirk pci_serial_quirks[] = {
.subdevice = PCI_SUBDEVICE_ID_POCTAL422, .subdevice = PCI_SUBDEVICE_ID_POCTAL422,
.init = sbs_init, .init = sbs_init,
.setup = sbs_setup, .setup = sbs_setup,
.exit = sbs_exit .exit = __devexit_p(sbs_exit),
}, },
/* /*
......
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