aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/misc/ad714x-i2c.c
diff options
context:
space:
mode:
authorWanlong Gao <wanlong.gao@gmail.com>2011-08-23 23:15:29 -0700
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2011-08-23 23:17:00 -0700
commit6a20baa9a40116715ebc99afe5b79b92f637ec23 (patch)
tree32b1db74a2ffe51404ff3c10dc3098c0907e7e17 /drivers/input/misc/ad714x-i2c.c
parentInput: synaptics - process finger (<=5) transitions (diff)
downloadlinux-dev-6a20baa9a40116715ebc99afe5b79b92f637ec23.tar.xz
linux-dev-6a20baa9a40116715ebc99afe5b79b92f637ec23.zip
Input: ad714x-i2c - change placement of __init/__exit annotations
Change the placement of __init and __exit annotations to be consistent with the rest of the drivers. Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/misc/ad714x-i2c.c')
-rw-r--r--drivers/input/misc/ad714x-i2c.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/input/misc/ad714x-i2c.c b/drivers/input/misc/ad714x-i2c.c
index e21deb1baa8a..45a6c9168f0a 100644
--- a/drivers/input/misc/ad714x-i2c.c
+++ b/drivers/input/misc/ad714x-i2c.c
@@ -121,13 +121,13 @@ static struct i2c_driver ad714x_i2c_driver = {
.id_table = ad714x_id,
};
-static __init int ad714x_i2c_init(void)
+static int __init ad714x_i2c_init(void)
{
return i2c_add_driver(&ad714x_i2c_driver);
}
module_init(ad714x_i2c_init);
-static __exit void ad714x_i2c_exit(void)
+static void __exit ad714x_i2c_exit(void)
{
i2c_del_driver(&ad714x_i2c_driver);
}