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: fix some kernel-doc warnings Date: Fri, 27 Feb 2026 12:40:46 +1000 Message-ID: In-Reply-To: <20260226030038.1182961-1-yujie.liu@intel.com> References: <20260226030038.1182961-1-yujie.liu@intel.com> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Overall Series Review Subject: drm: fix some kernel-doc warnings Author: Yujie Liu Patches: 16 Reviewed: 2026-02-27T12:40:46.546401 --- This is a straightforward 7-patch series by Yujie Liu fixing kernel-doc warnings across various DRM subsystems. Each patch corrects a mismatch between the kernel-doc comment and the actual function prototype or parameter list. The fixes fall into three categories: 1. **Function name mismatches** (patches 1, 4, 5, 6, 7): The doc comment names a function that doesn't match the actual function definition, typically due to a rename that didn't update the comment. 2. **Missing parameter descriptions** (patches 2, 3): A parameter was added to a function but never documented. 3. **Parameter name mismatches** (patches 1, 7): The `@param` name in the doc doesn't match the actual parameter name. All patches are trivially correct, include appropriate `Fixes:` tags pointing to the commits that introduced the mismatches, and are properly scoped (one logical fix per patch, with patch 3 bundling two related fixes in the same file). No functional code changes, zero risk of regressions. **Verdict: Series looks good. All patches are correct and ready to apply.** --- --- Generated by Claude Code Patch Reviewer