struct drm_device *drm = &(__i915)->drm;                        \
        int __ret_warn_on = !!(condition);                              \
        if (unlikely(__ret_warn_on))                                    \
-               if (!drm_WARN(drm, __i915->params.verbose_state_checks, format)) \
+               if (!drm_WARN(drm, __i915->display.params.verbose_state_checks, format)) \
                        drm_err(drm, format);                           \
        unlikely(__ret_warn_on);                                        \
 })
 
 intel_display_param_named(disable_display, bool, 0400,
        "Disable display (default: false)");
 
+intel_display_param_named(verbose_state_checks, bool, 0400,
+       "Enable verbose logs (ie. WARN_ON()) in case of unexpected hw state conditions.");
+
 intel_display_param_named_unsafe(enable_fbc, int, 0400,
        "Enable frame buffer compression for power savings "
        "(default: -1 (use per-chip default))");
 
        param(bool, load_detect_test, false, 0600) \
        param(bool, force_reset_modeset_test, false, 0600) \
        param(bool, disable_display, false, 0400) \
+       param(bool, verbose_state_checks, true, 0400) \
        param(int, enable_fbc, -1, 0600) \
        param(int, enable_psr, -1, 0600) \
        param(bool, psr_safest_params, false, 0400) \
 
        "Enable the MMIO debug code for the first N failures (default: off). "
        "This may negatively affect performance.");
 
-i915_param_named(verbose_state_checks, bool, 0400,
-       "Enable verbose logs (ie. WARN_ON()) in case of unexpected hw state conditions.");
-
 i915_param_named_unsafe(nuclear_pageflip, bool, 0400,
        "Force enable atomic functionality on platforms that don't have full support yet.");
 
 
        /* leave bools at the end to not create holes */ \
        param(bool, enable_hangcheck, true, 0600) \
        param(bool, error_capture, true, IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR) ? 0600 : 0) \
-       param(bool, verbose_state_checks, true, 0) \
        param(bool, nuclear_pageflip, false, 0400) \
        param(bool, enable_dp_mst, true, 0600) \
        param(bool, enable_gvt, false, IS_ENABLED(CONFIG_DRM_I915_GVT) ? 0400 : 0)