diff options
Diffstat (limited to 'sound/soc/codecs/max9877.c')
| -rw-r--r-- | sound/soc/codecs/max9877.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/sound/soc/codecs/max9877.c b/sound/soc/codecs/max9877.c index d15e5943c85e..6b6c74cd83e2 100644 --- a/sound/soc/codecs/max9877.c +++ b/sound/soc/codecs/max9877.c @@ -258,8 +258,8 @@ int max9877_add_controls(struct snd_soc_codec *codec)  }  EXPORT_SYMBOL_GPL(max9877_add_controls); -static int __devinit max9877_i2c_probe(struct i2c_client *client, -		const struct i2c_device_id *id) +static int max9877_i2c_probe(struct i2c_client *client, +			     const struct i2c_device_id *id)  {  	i2c = client; @@ -268,7 +268,7 @@ static int __devinit max9877_i2c_probe(struct i2c_client *client,  	return 0;  } -static __devexit int max9877_i2c_remove(struct i2c_client *client) +static int max9877_i2c_remove(struct i2c_client *client)  {  	i2c = NULL; @@ -287,7 +287,7 @@ static struct i2c_driver max9877_i2c_driver = {  		.owner = THIS_MODULE,  	},  	.probe = max9877_i2c_probe, -	.remove = __devexit_p(max9877_i2c_remove), +	.remove = max9877_i2c_remove,  	.id_table = max9877_i2c_id,  }; |