diff options
Diffstat (limited to 'sound/soc/codecs/jz4740.c')
-rw-r--r-- | sound/soc/codecs/jz4740.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/codecs/jz4740.c b/sound/soc/codecs/jz4740.c index 9ad1da36887e..d991529e1aff 100644 --- a/sound/soc/codecs/jz4740.c +++ b/sound/soc/codecs/jz4740.c | |||
@@ -348,7 +348,7 @@ static const struct regmap_config jz4740_codec_regmap_config = { | |||
348 | .cache_type = REGCACHE_RBTREE, | 348 | .cache_type = REGCACHE_RBTREE, |
349 | }; | 349 | }; |
350 | 350 | ||
351 | static int __devinit jz4740_codec_probe(struct platform_device *pdev) | 351 | static int jz4740_codec_probe(struct platform_device *pdev) |
352 | { | 352 | { |
353 | int ret; | 353 | int ret; |
354 | struct jz4740_codec *jz4740_codec; | 354 | struct jz4740_codec *jz4740_codec; |
@@ -380,7 +380,7 @@ static int __devinit jz4740_codec_probe(struct platform_device *pdev) | |||
380 | return ret; | 380 | return ret; |
381 | } | 381 | } |
382 | 382 | ||
383 | static int __devexit jz4740_codec_remove(struct platform_device *pdev) | 383 | static int jz4740_codec_remove(struct platform_device *pdev) |
384 | { | 384 | { |
385 | snd_soc_unregister_codec(&pdev->dev); | 385 | snd_soc_unregister_codec(&pdev->dev); |
386 | 386 | ||
@@ -391,7 +391,7 @@ static int __devexit jz4740_codec_remove(struct platform_device *pdev) | |||
391 | 391 | ||
392 | static struct platform_driver jz4740_codec_driver = { | 392 | static struct platform_driver jz4740_codec_driver = { |
393 | .probe = jz4740_codec_probe, | 393 | .probe = jz4740_codec_probe, |
394 | .remove = __devexit_p(jz4740_codec_remove), | 394 | .remove = jz4740_codec_remove, |
395 | .driver = { | 395 | .driver = { |
396 | .name = "jz4740-codec", | 396 | .name = "jz4740-codec", |
397 | .owner = THIS_MODULE, | 397 | .owner = THIS_MODULE, |