diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2010-01-12 14:13:00 +0000 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2010-01-12 14:13:00 +0000 |
commit | 735fe4cfbc3cedea41bd0ed31955054dae6beb46 (patch) | |
tree | c9386395fe625bb364858479baee88061e9d3be5 /sound/soc/codecs/da7210.c | |
parent | 03e7a35c0ef7a462385fb6a301dfc1b287cac6de (diff) | |
download | kernel_samsung_crespo-735fe4cfbc3cedea41bd0ed31955054dae6beb46.zip kernel_samsung_crespo-735fe4cfbc3cedea41bd0ed31955054dae6beb46.tar.gz kernel_samsung_crespo-735fe4cfbc3cedea41bd0ed31955054dae6beb46.tar.bz2 |
ASoC: Add missing __devexit and __devinit annotations
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/codecs/da7210.c')
-rw-r--r-- | sound/soc/codecs/da7210.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/codecs/da7210.c b/sound/soc/codecs/da7210.c index fbf3ab4..cf2975a 100644 --- a/sound/soc/codecs/da7210.c +++ b/sound/soc/codecs/da7210.c @@ -471,8 +471,8 @@ init_err: } #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE) -static int da7210_i2c_probe(struct i2c_client *i2c, - const struct i2c_device_id *id) +static int __devinit da7210_i2c_probe(struct i2c_client *i2c, + const struct i2c_device_id *id) { struct da7210_priv *da7210; struct snd_soc_codec *codec; @@ -495,7 +495,7 @@ static int da7210_i2c_probe(struct i2c_client *i2c, return ret; } -static int da7210_i2c_remove(struct i2c_client *client) +static int __devexit da7210_i2c_remove(struct i2c_client *client) { struct da7210_priv *da7210 = i2c_get_clientdata(client); |