diff options
Diffstat (limited to 'sound/soc/codecs/stac9766.c')
| -rw-r--r-- | sound/soc/codecs/stac9766.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/codecs/stac9766.c b/sound/soc/codecs/stac9766.c index 982e437799a..2eda85ba79a 100644 --- a/sound/soc/codecs/stac9766.c +++ b/sound/soc/codecs/stac9766.c @@ -385,13 +385,13 @@ static struct snd_soc_codec_driver soc_codec_dev_stac9766 = {  	.reg_cache_default = stac9766_reg,  }; -static __devinit int stac9766_probe(struct platform_device *pdev) +static int stac9766_probe(struct platform_device *pdev)  {  	return snd_soc_register_codec(&pdev->dev,  			&soc_codec_dev_stac9766, stac9766_dai, ARRAY_SIZE(stac9766_dai));  } -static int __devexit stac9766_remove(struct platform_device *pdev) +static int stac9766_remove(struct platform_device *pdev)  {  	snd_soc_unregister_codec(&pdev->dev);  	return 0; @@ -404,7 +404,7 @@ static struct platform_driver stac9766_codec_driver = {  	},  	.probe = stac9766_probe, -	.remove = __devexit_p(stac9766_remove), +	.remove = stac9766_remove,  };  module_platform_driver(stac9766_codec_driver);  |