From: Julian Braha Date: Sat, 2 May 2026 19:19:32 +0000 (+0100) Subject: drm/i915: replace select with dependency for visible DEBUG_OBJECTS X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=025f89b01ed8d5e65d87ed54f231e10c6ac08188;p=thirdparty%2Fkernel%2Flinux.git drm/i915: replace select with dependency for visible DEBUG_OBJECTS DRM_I915_SW_FENCE_DEBUG_OBJECTS currently selects DEBUG_OBJECTS even though DEBUG_OBJECTS is visible to users. Other config options use 'depends on' for DEBUG_OBJECTS, so let's do the same here. This select-visible Kconfig misusage was detected by Kconfirm, a static analysis tool for Kconfig. Signed-off-by: Julian Braha Link: https://patch.msgid.link/20260502191932.4491-1-julianbraha@gmail.com Signed-off-by: Jani Nikula --- diff --git a/drivers/gpu/drm/i915/Kconfig.debug b/drivers/gpu/drm/i915/Kconfig.debug index 3562a02ef7ad..9a2a49284876 100644 --- a/drivers/gpu/drm/i915/Kconfig.debug +++ b/drivers/gpu/drm/i915/Kconfig.debug @@ -153,7 +153,7 @@ config DRM_I915_TRACE_GTT config DRM_I915_SW_FENCE_DEBUG_OBJECTS bool "Enable additional driver debugging for fence objects" depends on DRM_I915 - select DEBUG_OBJECTS + depends on DEBUG_OBJECTS default n help Choose this option to turn on extra driver debugging that may affect