[igt-dev] [PATCH i-g-t] tests/i915_pm_dc: Fix platform version check
Anshuman Gupta
anshuman.gupta at intel.com
Thu Jul 15 06:47:31 UTC 2021
setup_dc_dpms() disables i915 runtime suspend to execute
dc{5,6}-dpms for the platforms has DC9 states to avoid
counter reset issue. With recent changes now AT_LEAST_GEN()
macro checks for grphics_ver, fix it with display_ver.
Signed-off-by: Anshuman Gupta <anshuman.gupta at intel.com>
---
tests/i915/i915_pm_dc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/i915/i915_pm_dc.c b/tests/i915/i915_pm_dc.c
index 0301fecc..3fe40e9d 100644
--- a/tests/i915/i915_pm_dc.c
+++ b/tests/i915/i915_pm_dc.c
@@ -337,7 +337,7 @@ static void cleanup_dc_dpms(data_t *data)
static void setup_dc_dpms(data_t *data)
{
if (IS_BROXTON(data->devid) || IS_GEMINILAKE(data->devid) ||
- AT_LEAST_GEN(data->devid, 11)) {
+ intel_display_ver(data->devid) >= 11) {
igt_disable_runtime_pm();
data->runtime_suspend_disabled = true;
} else {
--
2.26.2
More information about the igt-dev
mailing list