ASoC: ak4642: Convert to module_i2c_driver()
authorMark Brown <broonie@linaro.org>
Thu, 28 Nov 2013 17:24:55 +0000 (17:24 +0000)
committerMark Brown <broonie@linaro.org>
Mon, 2 Dec 2013 13:50:34 +0000 (13:50 +0000)
The device does not support anything other than I2C (at least with the
current driver) so save code.

Signed-off-by: Mark Brown <broonie@linaro.org>
sound/soc/codecs/ak4642.c

index 5af2374686180f08acf2b34235828ae672fe9a30..1f646c6e90c6b3ff688e0fd2582fcb1268679bb1 100644 (file)
@@ -513,7 +513,6 @@ static const struct regmap_config ak4648_regmap = {
        .num_reg_defaults       = ARRAY_SIZE(ak4648_reg),
 };
 
-#if IS_ENABLED(CONFIG_I2C)
 static struct of_device_id ak4642_of_match[];
 static int ak4642_i2c_probe(struct i2c_client *i2c,
                            const struct i2c_device_id *id)
@@ -577,27 +576,8 @@ static struct i2c_driver ak4642_i2c_driver = {
        .remove         = ak4642_i2c_remove,
        .id_table       = ak4642_i2c_id,
 };
-#endif
 
-static int __init ak4642_modinit(void)
-{
-       int ret = 0;
-#if IS_ENABLED(CONFIG_I2C)
-       ret = i2c_add_driver(&ak4642_i2c_driver);
-#endif
-       return ret;
-
-}
-module_init(ak4642_modinit);
-
-static void __exit ak4642_exit(void)
-{
-#if IS_ENABLED(CONFIG_I2C)
-       i2c_del_driver(&ak4642_i2c_driver);
-#endif
-
-}
-module_exit(ak4642_exit);
+module_i2c_driver(ak4642_i2c_driver);
 
 MODULE_DESCRIPTION("Soc AK4642 driver");
 MODULE_AUTHOR("Kuninori Morimoto <morimoto.kuninori@renesas.com>");
This page took 0.025074 seconds and 5 git commands to generate.