commit | f0967eea80ec2a19a4fe1ad27e3ff1b22c79a3c7 | [log] [tgz] |
---|---|---|
author | Axel Lin <[email protected]> | Fri Jan 20 15:38:18 2012 +0800 |
committer | Guenter Roeck <[email protected]> | Sun Mar 18 18:26:50 2012 -0700 |
tree | c0c6af7362f5ba5ea2220fba236f1b2e48defcca | |
parent | 61ba031841ad60c4a9ea16b20dd46b6cdb0faf2a [diff] [blame] |
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]>
diff --git a/drivers/hwmon/emc1403.c b/drivers/hwmon/emc1403.c index 270ffab..99ac141 100644 --- a/drivers/hwmon/emc1403.c +++ b/drivers/hwmon/emc1403.c
@@ -366,18 +366,7 @@ .address_list = emc1403_address_list, }; -static int __init sensor_emc1403_init(void) -{ - return i2c_add_driver(&sensor_emc1403); -} - -static void __exit sensor_emc1403_exit(void) -{ - i2c_del_driver(&sensor_emc1403); -} - -module_init(sensor_emc1403_init); -module_exit(sensor_emc1403_exit); +module_i2c_driver(sensor_emc1403); MODULE_AUTHOR("Kalhan Trisal <[email protected]"); MODULE_DESCRIPTION("emc1403 Thermal Driver");