diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:21:06 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-21 18:19:52 -0500 |
commit | 91116cba5da0c33f3093b804e487bea02b830bfb (patch) | |
tree | d98e1d07e7505ed338ba70a5a3a289035c7466b9 /drivers/tty/synclink.c | |
parent | 2520e2745cf35c8fd01476dd01eacfc813649f7a (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>
Diffstat (limited to 'drivers/tty/synclink.c')
-rw-r--r-- | drivers/tty/synclink.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 | ||
904 | static struct tty_driver *serial_driver; | 904 | static struct tty_driver *serial_driver; |