Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6a20baa9 authored by Wanlong Gao's avatar Wanlong Gao Committed by Dmitry Torokhov
Browse files

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: default avatarWanlong Gao <gaowanlong@cn.fujitsu.com>
Signed-off-by: default avatarDmitry Torokhov <dtor@mail.ru>
parent 6b4b49fe
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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);
}