summaryrefslogtreecommitdiffstats
path: root/drivers/hwmon/lm70.c
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@gmail.com>2012-01-20 15:53:47 +0800
committerGuenter Roeck <guenter.roeck@ericsson.com>2012-03-18 18:26:51 -0700
commit91efffe26a809bc6660b91e21264f48e501bfb46 (patch)
tree120b44641f98226023ae64b2d491de961795c824 /drivers/hwmon/lm70.c
parentf0967eea80ec2a19a4fe1ad27e3ff1b22c79a3c7 (diff)
downloadlinux-91efffe26a809bc6660b91e21264f48e501bfb46.tar.gz
linux-91efffe26a809bc6660b91e21264f48e501bfb46.tar.xz
hwmon: convert drivers/hwmon/* to use module_spi_driver()
This patch converts the drivers in drivers/hwmon/* to use the module_spi_driver() macro which makes the code smaller and a bit simpler. Signed-off-by: Axel Lin <axel.lin@gmail.com> Cc: Sonic Zhang <sonic.zhang@analog.com> Cc: Marc Pignat <marc.pignat@hevs.ch> Cc: Paul Thomas <pthomas8589@gmail.com> Cc: Eric Miao <eric.y.miao@gmail.com> Acked-by: Sonic Zhang <sonic.zhang@analog.com> Signed-off-by: Guenter Roeck <guenter.roeck@ericsson.com>
Diffstat (limited to 'drivers/hwmon/lm70.c')
-rw-r--r--drivers/hwmon/lm70.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/hwmon/lm70.c b/drivers/hwmon/lm70.c
index 0994cb086754..9c12ef3b863b 100644
--- a/drivers/hwmon/lm70.c
+++ b/drivers/hwmon/lm70.c
@@ -213,18 +213,7 @@ static struct spi_driver lm70_driver = {
.remove = __devexit_p(lm70_remove),
};
-static int __init init_lm70(void)
-{
- return spi_register_driver(&lm70_driver);
-}
-
-static void __exit cleanup_lm70(void)
-{
- spi_unregister_driver(&lm70_driver);
-}
-
-module_init(init_lm70);
-module_exit(cleanup_lm70);
+module_spi_driver(lm70_driver);
MODULE_AUTHOR("Kaiwan N Billimoria");
MODULE_DESCRIPTION("NS LM70 / TI TMP121/TMP123 Linux driver");