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/mode-config: Mention drm_mode_config_reset() culprits Date: Wed, 11 Mar 2026 13:09:07 +1000 Message-ID: In-Reply-To: <20260310-drm-mode-config-init-v1-3-de7397c8e1cf@kernel.org> References: <20260310-drm-mode-config-init-v1-0-de7397c8e1cf@kernel.org> <20260310-drm-mode-config-init-v1-3-de7397c8e1cf@kernel.org> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Patch Review Good documentation. The use of `@drm_private_obj` and `@drm_mode_config_reset()` in the doc comment should use `&` prefix for struct types and function references in kerneldoc format: ```c + * It's worth noting that @drm_private_obj structures are expected to be + * stable across suspend/resume cycles, and @drm_mode_config_reset() ``` Should be `&drm_private_obj` and `drm_mode_config_reset()` (no `@` prefix for function names in kerneldoc). --- Generated by Claude Code Patch Reviewer