diff options
author | Bill Pemberton <[email protected]> | 2012-11-19 13:26:18 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2012-11-21 15:27:46 -0800 |
commit | ae8d8a146725a966bd7c59c94f4d0016dcf7a04f (patch) | |
tree | 66dc363f206eb7a200615ba186462439099e997f /drivers/tty/serial/sccnxp.c | |
parent | 512f82a064e397e437845c3f03a3c6dc3e610e8b (diff) |
tty: remove use of __devexit
CONFIG_HOTPLUG is going away as an option so __devexit is no
longer needed.
Signed-off-by: Bill Pemberton <[email protected]>
Cc: Jiri Slaby <[email protected]>
Cc: Alan Cox <[email protected]>
Acked-by: Tobias Klauser <[email protected]>
Cc: Lucas Tavares <[email protected]>
Cc: Daniel Walker <[email protected]>
Cc: Bryan Huntsman <[email protected]>
Cc: "David S. Miller" <[email protected]>
Cc: Peter Korsgaard <[email protected]>
Cc: Tony Prisk <[email protected]>
Acked-by: David Brown <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'drivers/tty/serial/sccnxp.c')
-rw-r--r-- | drivers/tty/serial/sccnxp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/sccnxp.c b/drivers/tty/serial/sccnxp.c index 1ddace83263f..418b495e3233 100644 --- a/drivers/tty/serial/sccnxp.c +++ b/drivers/tty/serial/sccnxp.c @@ -943,7 +943,7 @@ err_out: return ret; } -static int __devexit sccnxp_remove(struct platform_device *pdev) +static int sccnxp_remove(struct platform_device *pdev) { int i; struct sccnxp_port *s = platform_get_drvdata(pdev); |