ASoC: sta32x: Use module_i2c_driver
authorSachin Kamat <sachin.kamat@linaro.org>
Mon, 6 Aug 2012 11:55:43 +0000 (17:25 +0530)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Mon, 6 Aug 2012 14:20:32 +0000 (15:20 +0100)
module_i2c_driver makes the code simpler by eliminating module_init
and module_exit calls.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
sound/soc/codecs/sta32x.c

index 8d717f4b5a875d5efb4bcdf283f3604366a07dea..51b7313a4c14b05c7da73c82313e4be49478c71a 100644 (file)
@@ -1006,17 +1006,7 @@ static struct i2c_driver sta32x_i2c_driver = {
        .id_table = sta32x_i2c_id,
 };
 
-static int __init sta32x_init(void)
-{
-       return i2c_add_driver(&sta32x_i2c_driver);
-}
-module_init(sta32x_init);
-
-static void __exit sta32x_exit(void)
-{
-       i2c_del_driver(&sta32x_i2c_driver);
-}
-module_exit(sta32x_exit);
+module_i2c_driver(sta32x_i2c_driver);
 
 MODULE_DESCRIPTION("ASoC STA32X driver");
 MODULE_AUTHOR("Johannes Stezenbach <js@sig21.net>");
This page took 0.027743 seconds and 5 git commands to generate.