diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 22:21:06 +0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-22 03:19:52 +0400 |
commit | 91116cba5da0c33f3093b804e487bea02b830bfb (patch) | |
tree | d98e1d07e7505ed338ba70a5a3a289035c7466b9 /drivers/tty/isicom.c | |
parent | 2520e2745cf35c8fd01476dd01eacfc813649f7a (diff) | |
download | linux-91116cba5da0c33f3093b804e487bea02b830bfb.tar.xz |
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/isicom.c')
-rw-r--r-- | drivers/tty/isicom.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 = { .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] */ |