]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ASoC: Add __devinit/__devexit annotations at necessary places
authorAxel Lin <axel.lin@gmail.com>
Mon, 23 Jan 2012 03:18:17 +0000 (11:18 +0800)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Mon, 23 Jan 2012 10:21:16 +0000 (10:21 +0000)
Fix below build warning when CONFIG_HOTPLUG is not set.

  CC      sound/soc/codecs/alc5623.o
sound/soc/codecs/alc5623.c:1062: warning: ‘alc5623_i2c_remove’ defined but not used
  CC      sound/soc/codecs/alc5632.o
sound/soc/codecs/alc5632.c:1112: warning: ‘alc5632_i2c_remove’ defined but not used

Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Leon Romanovsky <leon@leon.nu>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
sound/soc/codecs/alc5623.c
sound/soc/codecs/alc5632.c

index 3feee569ceea1bacab11ac78ad6b83bbf01bab7b..08f24198c8dafc8d5dfffd9e8ff29c5b068b02d0 100644 (file)
@@ -992,7 +992,7 @@ static struct snd_soc_codec_driver soc_codec_device_alc5623 = {
  *    low  = 0x1a
  *    high = 0x1b
  */
-static int alc5623_i2c_probe(struct i2c_client *client,
+static __devinit int alc5623_i2c_probe(struct i2c_client *client,
                                const struct i2c_device_id *id)
 {
        struct alc5623_platform_data *pdata;
@@ -1059,7 +1059,7 @@ static int alc5623_i2c_probe(struct i2c_client *client,
        return ret;
 }
 
-static int alc5623_i2c_remove(struct i2c_client *client)
+static __devexit int alc5623_i2c_remove(struct i2c_client *client)
 {
        snd_soc_unregister_codec(&client->dev);
        return 0;
index 390e437d7c5e08ef75a8406b5572f245d90eaaeb..af9c27ae02f0834b3c06ec30e38cdbe1875db5cf 100644 (file)
@@ -1109,7 +1109,7 @@ static __devinit int alc5632_i2c_probe(struct i2c_client *client,
        return ret;
 }
 
-static int alc5632_i2c_remove(struct i2c_client *client)
+static __devexit int alc5632_i2c_remove(struct i2c_client *client)
 {
        struct alc5632_priv *alc5632 = i2c_get_clientdata(client);
        snd_soc_unregister_codec(&client->dev);