lkml.org 
[lkml]   [2022]   [Nov]   [7]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH 25/26] drm: tidss: Remove #ifdef guards for PM related functions
Date
Use the SYSTEM_SLEEP_PM_OPS() and RUNTIME_PM_OPS() macros to handle the
PM callbacks.

These macros allow the suspend and resume functions to be automatically
dropped by the compiler when CONFIG_PM is disabled, without having
to use #ifdef guards.

This has the advantage of always compiling these functions in,
independently of any Kconfig option. Thanks to that, bugs and other
regressions are subsequently easier to catch. It also allows to drop the
__maybe_unused tags.

Some #ifndef CONFIG_PM guards were protecting simple statements, and
were also converted to "if (!IS_ENABLED(CONFIG_PM))".

Signed-off-by: Paul Cercueil <paul@crapouillou.net>
---
Cc: Jyri Sarha <jyri.sarha@iki.fi>
Cc: Tomi Valkeinen <tomba@kernel.org>
---
drivers/gpu/drm/tidss/tidss_drv.c | 29 +++++++++++++----------------
1 file changed, 13 insertions(+), 16 deletions(-)

diff --git a/drivers/gpu/drm/tidss/tidss_drv.c b/drivers/gpu/drm/tidss/tidss_drv.c
index 15cd9b91b7e2..6957c86f9e85 100644
--- a/drivers/gpu/drm/tidss/tidss_drv.c
+++ b/drivers/gpu/drm/tidss/tidss_drv.c
@@ -48,7 +48,7 @@ void tidss_runtime_put(struct tidss_device *tidss)
WARN_ON(r < 0);
}

-static int __maybe_unused tidss_pm_runtime_suspend(struct device *dev)
+static int tidss_pm_runtime_suspend(struct device *dev)
{
struct tidss_device *tidss = dev_get_drvdata(dev);

@@ -57,7 +57,7 @@ static int __maybe_unused tidss_pm_runtime_suspend(struct device *dev)
return dispc_runtime_suspend(tidss->dispc);
}

-static int __maybe_unused tidss_pm_runtime_resume(struct device *dev)
+static int tidss_pm_runtime_resume(struct device *dev)
{
struct tidss_device *tidss = dev_get_drvdata(dev);
int r;
@@ -71,7 +71,7 @@ static int __maybe_unused tidss_pm_runtime_resume(struct device *dev)
return 0;
}

-static int __maybe_unused tidss_suspend(struct device *dev)
+static int tidss_suspend(struct device *dev)
{
struct tidss_device *tidss = dev_get_drvdata(dev);

@@ -80,7 +80,7 @@ static int __maybe_unused tidss_suspend(struct device *dev)
return drm_mode_config_helper_suspend(&tidss->ddev);
}

-static int __maybe_unused tidss_resume(struct device *dev)
+static int tidss_resume(struct device *dev)
{
struct tidss_device *tidss = dev_get_drvdata(dev);

@@ -89,9 +89,9 @@ static int __maybe_unused tidss_resume(struct device *dev)
return drm_mode_config_helper_resume(&tidss->ddev);
}

-static __maybe_unused const struct dev_pm_ops tidss_pm_ops = {
- SET_SYSTEM_SLEEP_PM_OPS(tidss_suspend, tidss_resume)
- SET_RUNTIME_PM_OPS(tidss_pm_runtime_suspend, tidss_pm_runtime_resume, NULL)
+static const struct dev_pm_ops tidss_pm_ops = {
+ SYSTEM_SLEEP_PM_OPS(tidss_suspend, tidss_resume)
+ RUNTIME_PM_OPS(tidss_pm_runtime_suspend, tidss_pm_runtime_resume, NULL)
};

/* DRM device Information */
@@ -145,10 +145,9 @@ static int tidss_probe(struct platform_device *pdev)

pm_runtime_enable(dev);

-#ifndef CONFIG_PM
/* If we don't have PM, we need to call resume manually */
- dispc_runtime_resume(tidss->dispc);
-#endif
+ if (!IS_ENABLED(CONFIG_PM))
+ dispc_runtime_resume(tidss->dispc);

ret = tidss_modeset_init(tidss);
if (ret < 0) {
@@ -190,9 +189,8 @@ static int tidss_probe(struct platform_device *pdev)
tidss_irq_uninstall(ddev);

err_runtime_suspend:
-#ifndef CONFIG_PM
- dispc_runtime_suspend(tidss->dispc);
-#endif
+ if (!IS_ENABLED(CONFIG_PM))
+ dispc_runtime_suspend(tidss->dispc);
pm_runtime_disable(dev);

return ret;
@@ -212,10 +210,9 @@ static int tidss_remove(struct platform_device *pdev)

tidss_irq_uninstall(ddev);

-#ifndef CONFIG_PM
/* If we don't have PM, we need to call suspend manually */
- dispc_runtime_suspend(tidss->dispc);
-#endif
+ if (!IS_ENABLED(CONFIG_PM))
+ dispc_runtime_suspend(tidss->dispc);
pm_runtime_disable(dev);

/* devm allocated dispc goes away with the dev so mark it NULL */
--
2.35.1
\
 
 \ /
  Last update: 2022-11-07 18:58    [W:0.326 / U:0.136 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site