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 15:19:52 -0800 |
commit | 91116cba5da0c33f3093b804e487bea02b830bfb (patch) | |
tree | d98e1d07e7505ed338ba70a5a3a289035c7466b9 /drivers/tty/mxser.c | |
parent | 2520e2745cf35c8fd01476dd01eacfc813649f7a (diff) | |
download | linux-91116cba5da0c33f3093b804e487bea02b830bfb.tar.gz linux-91116cba5da0c33f3093b804e487bea02b830bfb.tar.bz2 linux-91116cba5da0c33f3093b804e487bea02b830bfb.zip |
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/mxser.c')
-rw-r--r-- | drivers/tty/mxser.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 = { .name = "mxser", .id_table = mxser_pcibrds, .probe = mxser_probe, - .remove = __devexit_p(mxser_remove) + .remove = mxser_remove }; static int __init mxser_module_init(void) |