aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2012-11-19 13:21:06 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-11-21 18:19:52 -0500
commit91116cba5da0c33f3093b804e487bea02b830bfb (patch)
treed98e1d07e7505ed338ba70a5a3a289035c7466b9
parent2520e2745cf35c8fd01476dd01eacfc813649f7a (diff)
tty: remove use of __devexit_p
CONFIG_HOTPLUG is going away as an option so __devexit_p is no longer needed. Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Cc: Jiri Slaby <jirislaby@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/tty/cyclades.c2
-rw-r--r--drivers/tty/hvc/hvc_opal.c2
-rw-r--r--drivers/tty/hvc/hvcs.c2
-rw-r--r--drivers/tty/isicom.c2
-rw-r--r--drivers/tty/moxa.c2
-rw-r--r--drivers/tty/mxser.c2
-rw-r--r--drivers/tty/nozomi.c2
-rw-r--r--drivers/tty/synclink.c2
-rw-r--r--drivers/tty/synclink_gt.c2
-rw-r--r--drivers/tty/synclinkmp.c2
10 files changed, 10 insertions, 10 deletions
diff --git a/drivers/tty/cyclades.c b/drivers/tty/cyclades.c
index de25774b5ec6..2f4d84f3c159 100644
--- a/drivers/tty/cyclades.c
+++ b/drivers/tty/cyclades.c
@@ -3973,7 +3973,7 @@ static struct pci_driver cy_pci_driver = {
3973 .name = "cyclades", 3973 .name = "cyclades",
3974 .id_table = cy_pci_dev_id, 3974 .id_table = cy_pci_dev_id,
3975 .probe = cy_pci_probe, 3975 .probe = cy_pci_probe,
3976 .remove = __devexit_p(cy_pci_remove) 3976 .remove = cy_pci_remove
3977}; 3977};
3978#endif 3978#endif
3979 3979
diff --git a/drivers/tty/hvc/hvc_opal.c b/drivers/tty/hvc/hvc_opal.c
index 0d2ea0c224c3..442bfb0d41da 100644
--- a/drivers/tty/hvc/hvc_opal.c
+++ b/drivers/tty/hvc/hvc_opal.c
@@ -239,7 +239,7 @@ static int __devexit hvc_opal_remove(struct platform_device *dev)
239 239
240static struct platform_driver hvc_opal_driver = { 240static struct platform_driver hvc_opal_driver = {
241 .probe = hvc_opal_probe, 241 .probe = hvc_opal_probe,
242 .remove = __devexit_p(hvc_opal_remove), 242 .remove = hvc_opal_remove,
243 .driver = { 243 .driver = {
244 .name = hvc_opal_name, 244 .name = hvc_opal_name,
245 .owner = THIS_MODULE, 245 .owner = THIS_MODULE,
diff --git a/drivers/tty/hvc/hvcs.c b/drivers/tty/hvc/hvcs.c
index 744c3b8eea49..888af583fe75 100644
--- a/drivers/tty/hvc/hvcs.c
+++ b/drivers/tty/hvc/hvcs.c
@@ -874,7 +874,7 @@ static int __devexit hvcs_remove(struct vio_dev *dev)
874static struct vio_driver hvcs_vio_driver = { 874static struct vio_driver hvcs_vio_driver = {
875 .id_table = hvcs_driver_table, 875 .id_table = hvcs_driver_table,
876 .probe = hvcs_probe, 876 .probe = hvcs_probe,
877 .remove = __devexit_p(hvcs_remove), 877 .remove = hvcs_remove,
878 .name = hvcs_driver_name, 878 .name = hvcs_driver_name,
879}; 879};
880 880
diff --git a/drivers/tty/isicom.c b/drivers/tty/isicom.c
index 67f288d7e76a..774e595e1fba 100644
--- a/drivers/tty/isicom.c
+++ b/drivers/tty/isicom.c
@@ -168,7 +168,7 @@ static struct pci_driver isicom_driver = {
168 .name = "isicom", 168 .name = "isicom",
169 .id_table = isicom_pci_tbl, 169 .id_table = isicom_pci_tbl,
170 .probe = isicom_probe, 170 .probe = isicom_probe,
171 .remove = __devexit_p(isicom_remove) 171 .remove = isicom_remove
172}; 172};
173 173
174static int prev_card = 3; /* start servicing isi_card[0] */ 174static int prev_card = 3; /* start servicing isi_card[0] */
diff --git a/drivers/tty/moxa.c b/drivers/tty/moxa.c
index d628176fb6d8..e025e065ae9c 100644
--- a/drivers/tty/moxa.c
+++ b/drivers/tty/moxa.c
@@ -1033,7 +1033,7 @@ static struct pci_driver moxa_pci_driver = {
1033 .name = "moxa", 1033 .name = "moxa",
1034 .id_table = moxa_pcibrds, 1034 .id_table = moxa_pcibrds,
1035 .probe = moxa_pci_probe, 1035 .probe = moxa_pci_probe,
1036 .remove = __devexit_p(moxa_pci_remove) 1036 .remove = moxa_pci_remove
1037}; 1037};
1038#endif /* CONFIG_PCI */ 1038#endif /* CONFIG_PCI */
1039 1039
diff --git a/drivers/tty/mxser.c b/drivers/tty/mxser.c
index 802a248e7ab9..a2fd58c336e4 100644
--- a/drivers/tty/mxser.c
+++ b/drivers/tty/mxser.c
@@ -2677,7 +2677,7 @@ static struct pci_driver mxser_driver = {
2677 .name = "mxser", 2677 .name = "mxser",
2678 .id_table = mxser_pcibrds, 2678 .id_table = mxser_pcibrds,
2679 .probe = mxser_probe, 2679 .probe = mxser_probe,
2680 .remove = __devexit_p(mxser_remove) 2680 .remove = mxser_remove
2681}; 2681};
2682 2682
2683static int __init mxser_module_init(void) 2683static int __init mxser_module_init(void)
diff --git a/drivers/tty/nozomi.c b/drivers/tty/nozomi.c
index cb764d297756..442efc3d2657 100644
--- a/drivers/tty/nozomi.c
+++ b/drivers/tty/nozomi.c
@@ -1908,7 +1908,7 @@ static struct pci_driver nozomi_driver = {
1908 .name = NOZOMI_NAME, 1908 .name = NOZOMI_NAME,
1909 .id_table = nozomi_pci_tbl, 1909 .id_table = nozomi_pci_tbl,
1910 .probe = nozomi_card_init, 1910 .probe = nozomi_card_init,
1911 .remove = __devexit_p(nozomi_card_exit), 1911 .remove = nozomi_card_exit,
1912}; 1912};
1913 1913
1914static __init int nozomi_init(void) 1914static __init int nozomi_init(void)
diff --git a/drivers/tty/synclink.c b/drivers/tty/synclink.c
index e4b5c39fc4ec..31db13be4697 100644
--- a/drivers/tty/synclink.c
+++ b/drivers/tty/synclink.c
@@ -898,7 +898,7 @@ static struct pci_driver synclink_pci_driver = {
898 .name = "synclink", 898 .name = "synclink",
899 .id_table = synclink_pci_tbl, 899 .id_table = synclink_pci_tbl,
900 .probe = synclink_init_one, 900 .probe = synclink_init_one,
901 .remove = __devexit_p(synclink_remove_one), 901 .remove = synclink_remove_one,
902}; 902};
903 903
904static struct tty_driver *serial_driver; 904static struct tty_driver *serial_driver;
diff --git a/drivers/tty/synclink_gt.c b/drivers/tty/synclink_gt.c
index 6e4c34011b7e..595f2f48193f 100644
--- a/drivers/tty/synclink_gt.c
+++ b/drivers/tty/synclink_gt.c
@@ -110,7 +110,7 @@ static struct pci_driver pci_driver = {
110 .name = "synclink_gt", 110 .name = "synclink_gt",
111 .id_table = pci_table, 111 .id_table = pci_table,
112 .probe = init_one, 112 .probe = init_one,
113 .remove = __devexit_p(remove_one), 113 .remove = remove_one,
114}; 114};
115 115
116static bool pci_registered; 116static bool pci_registered;
diff --git a/drivers/tty/synclinkmp.c b/drivers/tty/synclinkmp.c
index 40745beb2585..71f3eb22c979 100644
--- a/drivers/tty/synclinkmp.c
+++ b/drivers/tty/synclinkmp.c
@@ -492,7 +492,7 @@ static struct pci_driver synclinkmp_pci_driver = {
492 .name = "synclinkmp", 492 .name = "synclinkmp",
493 .id_table = synclinkmp_pci_tbl, 493 .id_table = synclinkmp_pci_tbl,
494 .probe = synclinkmp_init_one, 494 .probe = synclinkmp_init_one,
495 .remove = __devexit_p(synclinkmp_remove_one), 495 .remove = synclinkmp_remove_one,
496}; 496};
497 497
498 498