diff options
| author | Axel Lin <[email protected]> | 2012-01-20 07:38:18 +0000 |
|---|---|---|
| committer | Guenter Roeck <[email protected]> | 2012-03-19 01:26:50 +0000 |
| commit | f0967eea80ec2a19a4fe1ad27e3ff1b22c79a3c7 (patch) | |
| tree | c0c6af7362f5ba5ea2220fba236f1b2e48defcca /drivers/hwmon/lm85.c | |
| parent | hwmon: (vt8231) Fix multi-line comments (diff) | |
| download | kernel-f0967eea80ec2a19a4fe1ad27e3ff1b22c79a3c7.tar.gz kernel-f0967eea80ec2a19a4fe1ad27e3ff1b22c79a3c7.zip | |
hwmon: convert drivers/hwmon/* to use module_i2c_driver()
This patch converts the drivers in drivers/hwmon/* to use the
module_i2c_driver() macro which makes the code smaller and a bit simpler.
Signed-off-by: Axel Lin <[email protected]>
Cc: Corentin Labbe <[email protected]>
Cc: Dirk Eibach <[email protected]>
Cc: "Mark M. Hoffman" <[email protected]>
Cc: Steve Glendinning <[email protected]>
Cc: Riku Voipio <[email protected]>
Cc: Guillaume Ligneul <[email protected]>
Cc: David George <[email protected]>
Cc: "Hans J. Koch" <[email protected]>
Cc: Marc Hulsman <[email protected]>
Cc: Rudolf Marek <[email protected]>
Signed-off-by: Guenter Roeck <[email protected]>
Diffstat (limited to 'drivers/hwmon/lm85.c')
| -rw-r--r-- | drivers/hwmon/lm85.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/hwmon/lm85.c b/drivers/hwmon/lm85.c index da72dc12068c..fd269831788f 100644 --- a/drivers/hwmon/lm85.c +++ b/drivers/hwmon/lm85.c @@ -1611,22 +1611,10 @@ static struct lm85_data *lm85_update_device(struct device *dev) return data; } - -static int __init sm_lm85_init(void) -{ - return i2c_add_driver(&lm85_driver); -} - -static void __exit sm_lm85_exit(void) -{ - i2c_del_driver(&lm85_driver); -} +module_i2c_driver(lm85_driver); MODULE_LICENSE("GPL"); MODULE_AUTHOR("Philip Pokorny <[email protected]>, " "Margit Schubert-While <[email protected]>, " "Justin Thiessen <[email protected]>"); MODULE_DESCRIPTION("LM85-B, LM85-C driver"); - -module_init(sm_lm85_init); -module_exit(sm_lm85_exit); |
