diff options
author | Axel Lin <axel.lin@gmail.com> | 2012-01-22 02:36:45 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2012-01-24 19:31:49 -0500 |
commit | a64fe2ed76614d37abb6966a67f4f39d10efba3c (patch) | |
tree | 553806918a13fb98fde71ce8e696d4174e7a103e /drivers/misc/bh1770glc.c | |
parent | b00e126ffea89b687a83093546058b07aa054b4c (diff) |
MISC: convert drivers/misc/* to use module_i2c_driver()
This patch converts the drivers in drivers/misc/* to use the
module_i2c_driver() macro which makes the code smaller and a bit
simpler.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Cc: Michael Hennerich <hennerich@blackfin.uclinux.org>
Cc: Anantha Narayanan <Anantha.Narayanan@intel.com>
Cc: Hemanth V <hemanthv@ti.com>
Cc: Christoph Mair <christoph.mair@gmail.com>
Cc: Grant Likely <grant.likely@secretlab.ca>
Cc: Ben Gardner <bgardner@wabtec.com>
Cc: Minkyu Kang <mk7.kang@samsung.com>
Cc: Kalhan Trisal <kalhan.trisal@intel.com>
Cc: Darrick J. Wong <djwong@us.ibm.com>
Cc: Daniel Mack <zonque@gmail.com>
Cc: Rodolfo Giometti <giometti@linux.it>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/misc/bh1770glc.c')
-rw-r--r-- | drivers/misc/bh1770glc.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/misc/bh1770glc.c b/drivers/misc/bh1770glc.c index d79a972f2c79..3d56ae7ef8de 100644 --- a/drivers/misc/bh1770glc.c +++ b/drivers/misc/bh1770glc.c | |||
@@ -1399,19 +1399,8 @@ static struct i2c_driver bh1770_driver = { | |||
1399 | .id_table = bh1770_id, | 1399 | .id_table = bh1770_id, |
1400 | }; | 1400 | }; |
1401 | 1401 | ||
1402 | static int __init bh1770_init(void) | 1402 | module_i2c_driver(bh1770_driver); |
1403 | { | ||
1404 | return i2c_add_driver(&bh1770_driver); | ||
1405 | } | ||
1406 | |||
1407 | static void __exit bh1770_exit(void) | ||
1408 | { | ||
1409 | i2c_del_driver(&bh1770_driver); | ||
1410 | } | ||
1411 | 1403 | ||
1412 | MODULE_DESCRIPTION("BH1770GLC / SFH7770 combined ALS and proximity sensor"); | 1404 | MODULE_DESCRIPTION("BH1770GLC / SFH7770 combined ALS and proximity sensor"); |
1413 | MODULE_AUTHOR("Samu Onkalo, Nokia Corporation"); | 1405 | MODULE_AUTHOR("Samu Onkalo, Nokia Corporation"); |
1414 | MODULE_LICENSE("GPL v2"); | 1406 | MODULE_LICENSE("GPL v2"); |
1415 | |||
1416 | module_init(bh1770_init); | ||
1417 | module_exit(bh1770_exit); | ||