diff options
author | Peter Huewe <peterhuewe@gmx.de> | 2013-09-13 15:51:50 -0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-09-19 06:30:10 -0400 |
commit | 93f571728f236dfaad1755f781898febb55d1d63 (patch) | |
tree | bd6ea2958d505657ad956646f1d21f624641463c | |
parent | fc0b01930e50074f66ab1a7fe6d6a9e1e1ef9e41 (diff) |
video/matrox/matroxfb_maven: Use module_i2c_driver to register driver
Removing some boilerplate by using module_i2c_driver instead of calling
register and unregister in the otherwise empty init/exit functions.
Also removed a useless comment as suggested by Jean Delvare.
Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Cc: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Cc: Tomi Valkeinen <tomi.valkeinen@ti.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
-rw-r--r-- | drivers/video/matrox/matroxfb_maven.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/video/matrox/matroxfb_maven.c b/drivers/video/matrox/matroxfb_maven.c index fd2897455696..ee41a0f276b2 100644 --- a/drivers/video/matrox/matroxfb_maven.c +++ b/drivers/video/matrox/matroxfb_maven.c | |||
@@ -1295,19 +1295,7 @@ static struct i2c_driver maven_driver={ | |||
1295 | .id_table = maven_id, | 1295 | .id_table = maven_id, |
1296 | }; | 1296 | }; |
1297 | 1297 | ||
1298 | static int __init matroxfb_maven_init(void) | 1298 | module_i2c_driver(maven_driver); |
1299 | { | ||
1300 | return i2c_add_driver(&maven_driver); | ||
1301 | } | ||
1302 | |||
1303 | static void __exit matroxfb_maven_exit(void) | ||
1304 | { | ||
1305 | i2c_del_driver(&maven_driver); | ||
1306 | } | ||
1307 | |||
1308 | MODULE_AUTHOR("(c) 1999-2002 Petr Vandrovec <vandrove@vc.cvut.cz>"); | 1299 | MODULE_AUTHOR("(c) 1999-2002 Petr Vandrovec <vandrove@vc.cvut.cz>"); |
1309 | MODULE_DESCRIPTION("Matrox G200/G400 Matrox MGA-TVO driver"); | 1300 | MODULE_DESCRIPTION("Matrox G200/G400 Matrox MGA-TVO driver"); |
1310 | MODULE_LICENSE("GPL"); | 1301 | MODULE_LICENSE("GPL"); |
1311 | module_init(matroxfb_maven_init); | ||
1312 | module_exit(matroxfb_maven_exit); | ||
1313 | /* we do not have __setup() yet */ | ||