ASoC: Intel: Skylake: Convert to devm_snd_soc_register_card
authorAxel Lin <axel.lin@ingics.com>
Tue, 20 Oct 2015 11:13:45 +0000 (19:13 +0800)
committerMark Brown <broonie@kernel.org>
Thu, 22 Oct 2015 16:53:32 +0000 (01:53 +0900)
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/intel/boards/skl_rt286.c

index 488c98e..a73a431 100644 (file)
@@ -240,18 +240,11 @@ static int skylake_audio_probe(struct platform_device *pdev)
 {
        skylake_rt286.dev = &pdev->dev;
 
-       return snd_soc_register_card(&skylake_rt286);
-}
-
-static int skylake_audio_remove(struct platform_device *pdev)
-{
-       snd_soc_unregister_card(&skylake_rt286);
-       return 0;
+       return devm_snd_soc_register_card(&pdev->dev, &skylake_rt286);
 }
 
 static struct platform_driver skylake_audio = {
        .probe = skylake_audio_probe,
-       .remove = skylake_audio_remove,
        .driver = {
                .name = "skl_alc286s_i2s",
        },