media: staging: tegra-vde: Use __maybe_unused attribute instead of ifdef
authorDmitry Osipenko <digetx@gmail.com>
Sun, 15 Dec 2019 18:07:52 +0000 (19:07 +0100)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Wed, 8 Jan 2020 13:27:14 +0000 (14:27 +0100)
Replace #ifdef with __maybe_unused attribute just to keep code cleaner a
tad.

Signed-off-by: Dmitry Osipenko <digetx@gmail.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/staging/media/tegra-vde/vde.c

index 3466dad..e18fd48 100644 (file)
@@ -1150,8 +1150,7 @@ static int tegra_vde_remove(struct platform_device *pdev)
        return 0;
 }
 
-#ifdef CONFIG_PM_SLEEP
-static int tegra_vde_pm_suspend(struct device *dev)
+static __maybe_unused int tegra_vde_pm_suspend(struct device *dev)
 {
        struct tegra_vde *vde = dev_get_drvdata(dev);
        int err;
@@ -1165,7 +1164,7 @@ static int tegra_vde_pm_suspend(struct device *dev)
        return 0;
 }
 
-static int tegra_vde_pm_resume(struct device *dev)
+static __maybe_unused int tegra_vde_pm_resume(struct device *dev)
 {
        struct tegra_vde *vde = dev_get_drvdata(dev);
        int err;
@@ -1178,7 +1177,6 @@ static int tegra_vde_pm_resume(struct device *dev)
 
        return 0;
 }
-#endif
 
 static const struct dev_pm_ops tegra_vde_pm_ops = {
        SET_RUNTIME_PM_OPS(tegra_vde_runtime_suspend,