ASoC: tegra: tegra210_dmic: Convert to platform remove callback returning void
[linux-2.6-microblaze.git] / sound / soc / tegra / tegra210_dmic.c
index db95794..763b206 100644 (file)
@@ -534,11 +534,9 @@ static int tegra210_dmic_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int tegra210_dmic_remove(struct platform_device *pdev)
+static void tegra210_dmic_remove(struct platform_device *pdev)
 {
        pm_runtime_disable(&pdev->dev);
-
-       return 0;
 }
 
 static const struct dev_pm_ops tegra210_dmic_pm_ops = {
@@ -561,7 +559,7 @@ static struct platform_driver tegra210_dmic_driver = {
                .pm = &tegra210_dmic_pm_ops,
        },
        .probe = tegra210_dmic_probe,
-       .remove = tegra210_dmic_remove,
+       .remove_new = tegra210_dmic_remove,
 };
 module_platform_driver(tegra210_dmic_driver)