aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/wm8903.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/soc/codecs/wm8903.c')
-rw-r--r--sound/soc/codecs/wm8903.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/soc/codecs/wm8903.c b/sound/soc/codecs/wm8903.c
index 839414f9e2ed..134e41c870b9 100644
--- a/sound/soc/codecs/wm8903.c
+++ b/sound/soc/codecs/wm8903.c
@@ -2020,8 +2020,8 @@ static int wm8903_set_pdata_from_of(struct i2c_client *i2c,
2020 return 0; 2020 return 0;
2021} 2021}
2022 2022
2023static __devinit int wm8903_i2c_probe(struct i2c_client *i2c, 2023static int wm8903_i2c_probe(struct i2c_client *i2c,
2024 const struct i2c_device_id *id) 2024 const struct i2c_device_id *id)
2025{ 2025{
2026 struct wm8903_platform_data *pdata = dev_get_platdata(&i2c->dev); 2026 struct wm8903_platform_data *pdata = dev_get_platdata(&i2c->dev);
2027 struct wm8903_priv *wm8903; 2027 struct wm8903_priv *wm8903;
@@ -2206,7 +2206,7 @@ err:
2206 return ret; 2206 return ret;
2207} 2207}
2208 2208
2209static __devexit int wm8903_i2c_remove(struct i2c_client *client) 2209static int wm8903_i2c_remove(struct i2c_client *client)
2210{ 2210{
2211 struct wm8903_priv *wm8903 = i2c_get_clientdata(client); 2211 struct wm8903_priv *wm8903 = i2c_get_clientdata(client);
2212 2212
@@ -2237,7 +2237,7 @@ static struct i2c_driver wm8903_i2c_driver = {
2237 .of_match_table = wm8903_of_match, 2237 .of_match_table = wm8903_of_match,
2238 }, 2238 },
2239 .probe = wm8903_i2c_probe, 2239 .probe = wm8903_i2c_probe,
2240 .remove = __devexit_p(wm8903_i2c_remove), 2240 .remove = wm8903_i2c_remove,
2241 .id_table = wm8903_i2c_id, 2241 .id_table = wm8903_i2c_id,
2242}; 2242};
2243 2243