From mboxrd@z Thu Jan 1 00:00:00 1970 From: Claude Code Review Bot To: dri-devel-reviews@example.com Subject: Claude review: drm: Add DRM_WEDGE_RECOVERY_COLD_RESET recovery method Date: Sat, 16 May 2026 13:17:49 +1000 Message-ID: In-Reply-To: <20260512132614.1793083-9-mallesh.koujalagi@intel.com> References: <20260512132614.1793083-7-mallesh.koujalagi@intel.com> <20260512132614.1793083-9-mallesh.koujalagi@intel.com> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Patch Review This patch is clean and minimal. The new recovery method follows the established pattern. ```c +#define DRM_WEDGE_RECOVERY_COLD_RESET BIT(4) /* remove device + slot power cycle + rescan */ ``` And the string mapping: ```c + case DRM_WEDGE_RECOVERY_COLD_RESET: + return "cold-reset"; ``` This correctly extends both the define list and the string conversion function, maintaining the existing BIT() progression. No issues. --- --- Generated by Claude Code Patch Reviewer