On Wed, 27 Apr 2022, Zhi Wang <[email protected]> wrote: > A compiling error was reported when CONFIG_DRM_I915_DEBUG_RUNTIME_PM=n. > Fix the problem by using the pre-defined macro. > > Cc: Jason Gunthorpe <[email protected]> > Cc: Jani Nikula <[email protected]> > Signed-off-by: Zhi Wang <[email protected]>
We'll get this right, for now, but I do wonder if breaking these is going to be a perpetual thing. :( Reviewed-by: Jani Nikula <[email protected]> > --- > drivers/gpu/drm/i915/intel_gvt.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/drivers/gpu/drm/i915/intel_gvt.c > b/drivers/gpu/drm/i915/intel_gvt.c > index 24bc693439e8..e98b6d69a91a 100644 > --- a/drivers/gpu/drm/i915/intel_gvt.c > +++ b/drivers/gpu/drm/i915/intel_gvt.c > @@ -309,7 +309,9 @@ EXPORT_SYMBOL_NS_GPL(__intel_context_do_pin, I915_GVT); > EXPORT_SYMBOL_NS_GPL(__intel_context_do_unpin, I915_GVT); > EXPORT_SYMBOL_NS_GPL(intel_ring_begin, I915_GVT); > EXPORT_SYMBOL_NS_GPL(intel_runtime_pm_get, I915_GVT); > +#if IS_ENABLED(CONFIG_DRM_I915_DEBUG_RUNTIME_PM) > EXPORT_SYMBOL_NS_GPL(intel_runtime_pm_put, I915_GVT); > +#endif > EXPORT_SYMBOL_NS_GPL(intel_runtime_pm_put_unchecked, I915_GVT); > EXPORT_SYMBOL_NS_GPL(intel_uncore_forcewake_for_reg, I915_GVT); > EXPORT_SYMBOL_NS_GPL(intel_uncore_forcewake_get, I915_GVT); -- Jani Nikula, Intel Open Source Graphics Center
