Commit c88f3de8555486706c87f5f34f9b45e4c4826283

Authored by Bill Pemberton
Committed by Mark Brown
1 parent 570f6fe1c3

ASoC: isabelle: 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>

Showing 1 changed file with 4 additions and 4 deletions Side-by-side Diff

sound/soc/codecs/isabelle.c
... ... @@ -1119,8 +1119,8 @@
1119 1119 .cache_type = REGCACHE_RBTREE,
1120 1120 };
1121 1121  
1122   -static int __devinit isabelle_i2c_probe(struct i2c_client *i2c,
1123   - const struct i2c_device_id *id)
  1122 +static int isabelle_i2c_probe(struct i2c_client *i2c,
  1123 + const struct i2c_device_id *id)
1124 1124 {
1125 1125 struct regmap *isabelle_regmap;
1126 1126 int ret = 0;
... ... @@ -1145,7 +1145,7 @@
1145 1145 return ret;
1146 1146 }
1147 1147  
1148   -static int __devexit isabelle_i2c_remove(struct i2c_client *client)
  1148 +static int isabelle_i2c_remove(struct i2c_client *client)
1149 1149 {
1150 1150 snd_soc_unregister_codec(&client->dev);
1151 1151 return 0;
... ... @@ -1163,7 +1163,7 @@
1163 1163 .owner = THIS_MODULE,
1164 1164 },
1165 1165 .probe = isabelle_i2c_probe,
1166   - .remove = __devexit_p(isabelle_i2c_remove),
  1166 + .remove = isabelle_i2c_remove,
1167 1167 .id_table = isabelle_i2c_id,
1168 1168 };
1169 1169