diff options
author | Devendra Naga <develkernel412222@gmail.com> | 2012-08-23 18:04:42 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-09-05 15:33:39 -0400 |
commit | c0fc208e487a985c4d083c498fecf791e6e965b7 (patch) | |
tree | a85040bdf208952fa763f4357b64f6f20945aa8e /drivers/tty/serial/max3100.c | |
parent | 1c4c4394a6040b7bd2154e848cd9ab536b6ab0dd (diff) |
tty: max3100: use module_spi_driver
the driver's module init and exit functions can be replaced
with module_spi_driver as they do
only spi_register_driver and spi_unregister_driver in module's init and exit
paths.
Signed-off-by: Devendra Naga <develkernel412222@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/serial/max3100.c')
-rw-r--r-- | drivers/tty/serial/max3100.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/drivers/tty/serial/max3100.c b/drivers/tty/serial/max3100.c index b4902b99cfd2..46043c2521ce 100644 --- a/drivers/tty/serial/max3100.c +++ b/drivers/tty/serial/max3100.c | |||
@@ -910,17 +910,7 @@ static struct spi_driver max3100_driver = { | |||
910 | .resume = max3100_resume, | 910 | .resume = max3100_resume, |
911 | }; | 911 | }; |
912 | 912 | ||
913 | static int __init max3100_init(void) | 913 | module_spi_driver(max3100_driver); |
914 | { | ||
915 | return spi_register_driver(&max3100_driver); | ||
916 | } | ||
917 | module_init(max3100_init); | ||
918 | |||
919 | static void __exit max3100_exit(void) | ||
920 | { | ||
921 | spi_unregister_driver(&max3100_driver); | ||
922 | } | ||
923 | module_exit(max3100_exit); | ||
924 | 914 | ||
925 | MODULE_DESCRIPTION("MAX3100 driver"); | 915 | MODULE_DESCRIPTION("MAX3100 driver"); |
926 | MODULE_AUTHOR("Christian Pellegrin <chripell@evolware.org>"); | 916 | MODULE_AUTHOR("Christian Pellegrin <chripell@evolware.org>"); |