diff options
| author | Bill Pemberton <[email protected]> | 2012-11-19 18:21:34 +0000 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2012-11-21 23:19:52 +0000 |
| commit | 2d47b7160243b1422006b91debf438484a4fde58 (patch) | |
| tree | aad1a535ba22758ddea8189b0c0376147beefd2c /drivers/tty/serial/sccnxp.c | |
| parent | tty: remove use of __devexit_p (diff) | |
| download | kernel-2d47b7160243b1422006b91debf438484a4fde58.tar.gz kernel-2d47b7160243b1422006b91debf438484a4fde58.zip | |
tty: serial: 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 <[email protected]>
Cc: Alan Cox <[email protected]>
Cc: Lucas Tavares <[email protected]>
Cc: "David S. Miller" <[email protected]>
Cc: Peter Korsgaard <[email protected]>
Cc: Tony Prisk <[email protected]>
Acked-by: Tobias Klauser <[email protected]>
Acked-by: Nicolas Ferre <[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 e821068cd95b..810853f5fd0e 100644 --- a/drivers/tty/serial/sccnxp.c +++ b/drivers/tty/serial/sccnxp.c @@ -981,7 +981,7 @@ static struct platform_driver sccnxp_uart_driver = { .owner = THIS_MODULE, }, .probe = sccnxp_probe, - .remove = __devexit_p(sccnxp_remove), + .remove = sccnxp_remove, .id_table = sccnxp_id_table, }; module_platform_driver(sccnxp_uart_driver); |
