diff options
author | Axel Lin <axel.lin@gmail.com> | 2012-03-17 02:05:41 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2012-03-17 02:06:19 -0400 |
commit | 1b92c1cf6b638e7cbe9fdaac3f6efb8874f5cc02 (patch) | |
tree | 88e7cfcd088df7eba9b705285c8e0d8ba7bbd632 /drivers/input/misc/bma150.c | |
parent | ca83922e1c51c090e62bd42f3c12c84f49374a9e (diff) |
Input: convert I2C drivers to use module_i2c_driver()
This patch converts the drivers in drivers/input/* 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>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/misc/bma150.c')
-rw-r--r-- | drivers/input/misc/bma150.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/input/misc/bma150.c b/drivers/input/misc/bma150.c index 8f55b54352b6..e2f1e9f952b1 100644 --- a/drivers/input/misc/bma150.c +++ b/drivers/input/misc/bma150.c | |||
@@ -673,19 +673,8 @@ static struct i2c_driver bma150_driver = { | |||
673 | .remove = __devexit_p(bma150_remove), | 673 | .remove = __devexit_p(bma150_remove), |
674 | }; | 674 | }; |
675 | 675 | ||
676 | static int __init BMA150_init(void) | 676 | module_i2c_driver(bma150_driver); |
677 | { | ||
678 | return i2c_add_driver(&bma150_driver); | ||
679 | } | ||
680 | |||
681 | static void __exit BMA150_exit(void) | ||
682 | { | ||
683 | i2c_del_driver(&bma150_driver); | ||
684 | } | ||
685 | 677 | ||
686 | MODULE_AUTHOR("Albert Zhang <xu.zhang@bosch-sensortec.com>"); | 678 | MODULE_AUTHOR("Albert Zhang <xu.zhang@bosch-sensortec.com>"); |
687 | MODULE_DESCRIPTION("BMA150 driver"); | 679 | MODULE_DESCRIPTION("BMA150 driver"); |
688 | MODULE_LICENSE("GPL"); | 680 | MODULE_LICENSE("GPL"); |
689 | |||
690 | module_init(BMA150_init); | ||
691 | module_exit(BMA150_exit); | ||