aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/max9768.c
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2012-12-07 09:26:37 -0500
committerMark Brown <broonie@opensource.wolfsonmicro.com>2012-12-09 10:31:51 -0500
commit7a79e94e973639da7bf1b8242d504f9db9e5e848 (patch)
tree2bae8c8a5e1b350e2df0dbd6a80eff2dcc943ee1 /sound/soc/codecs/max9768.c
parente51e97eecdb2a4415aac5f1a69aa66ed787f1217 (diff)
ASoC: codecs: remove __dev* attributes
CONFIG_HOTPLUG is going away as an option. As result the __dev* markings will be going away. Remove use of __devinit, __devexit_p, __devinitdata, __devinitconst, and __devexit. Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/codecs/max9768.c')
-rw-r--r--sound/soc/codecs/max9768.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/soc/codecs/max9768.c b/sound/soc/codecs/max9768.c
index a777de6a1b23..a6ac2313047d 100644
--- a/sound/soc/codecs/max9768.c
+++ b/sound/soc/codecs/max9768.c
@@ -159,8 +159,8 @@ static const struct regmap_config max9768_i2c_regmap_config = {
159 .cache_type = REGCACHE_RBTREE, 159 .cache_type = REGCACHE_RBTREE,
160}; 160};
161 161
162static int __devinit max9768_i2c_probe(struct i2c_client *client, 162static int max9768_i2c_probe(struct i2c_client *client,
163 const struct i2c_device_id *id) 163 const struct i2c_device_id *id)
164{ 164{
165 struct max9768 *max9768; 165 struct max9768 *max9768;
166 struct max9768_pdata *pdata = client->dev.platform_data; 166 struct max9768_pdata *pdata = client->dev.platform_data;
@@ -208,7 +208,7 @@ static int __devinit max9768_i2c_probe(struct i2c_client *client,
208 return err; 208 return err;
209} 209}
210 210
211static int __devexit max9768_i2c_remove(struct i2c_client *client) 211static int max9768_i2c_remove(struct i2c_client *client)
212{ 212{
213 struct max9768 *max9768 = i2c_get_clientdata(client); 213 struct max9768 *max9768 = i2c_get_clientdata(client);
214 214
@@ -234,7 +234,7 @@ static struct i2c_driver max9768_i2c_driver = {
234 .owner = THIS_MODULE, 234 .owner = THIS_MODULE,
235 }, 235 },
236 .probe = max9768_i2c_probe, 236 .probe = max9768_i2c_probe,
237 .remove = __devexit_p(max9768_i2c_remove), 237 .remove = max9768_i2c_remove,
238 .id_table = max9768_i2c_id, 238 .id_table = max9768_i2c_id,
239}; 239};
240module_i2c_driver(max9768_i2c_driver); 240module_i2c_driver(max9768_i2c_driver);