Commit 91116cba authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman
Browse files

tty: remove use of __devexit_p



CONFIG_HOTPLUG is going away as an option so __devexit_p is no longer
needed.

Signed-off-by: default avatarBill Pemberton <wfp5p@virginia.edu>
Cc: Jiri Slaby <jirislaby@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2520e274
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3973,7 +3973,7 @@ static struct pci_driver cy_pci_driver = {
	.name = "cyclades",
	.id_table = cy_pci_dev_id,
	.probe = cy_pci_probe,
	.remove = __devexit_p(cy_pci_remove)
	.remove = cy_pci_remove
};
#endif

+1 −1
Original line number Diff line number Diff line
@@ -239,7 +239,7 @@ static int __devexit hvc_opal_remove(struct platform_device *dev)

static struct platform_driver hvc_opal_driver = {
	.probe		= hvc_opal_probe,
	.remove		= __devexit_p(hvc_opal_remove),
	.remove		= hvc_opal_remove,
	.driver		= {
		.name	= hvc_opal_name,
		.owner	= THIS_MODULE,
+1 −1
Original line number Diff line number Diff line
@@ -874,7 +874,7 @@ static int __devexit hvcs_remove(struct vio_dev *dev)
static struct vio_driver hvcs_vio_driver = {
	.id_table	= hvcs_driver_table,
	.probe		= hvcs_probe,
	.remove		= __devexit_p(hvcs_remove),
	.remove		= hvcs_remove,
	.name		= hvcs_driver_name,
};

+1 −1
Original line number Diff line number Diff line
@@ -168,7 +168,7 @@ static struct pci_driver isicom_driver = {
	.name		= "isicom",
	.id_table	= isicom_pci_tbl,
	.probe		= isicom_probe,
	.remove		= __devexit_p(isicom_remove)
	.remove		= isicom_remove
};

static int prev_card = 3;	/*	start servicing isi_card[0]	*/
+1 −1
Original line number Diff line number Diff line
@@ -1033,7 +1033,7 @@ static struct pci_driver moxa_pci_driver = {
	.name = "moxa",
	.id_table = moxa_pcibrds,
	.probe = moxa_pci_probe,
	.remove = __devexit_p(moxa_pci_remove)
	.remove = moxa_pci_remove
};
#endif /* CONFIG_PCI */

Loading