From mboxrd@z Thu Jan 1 00:00:00 1970 From: Claude Code Review Bot To: dri-devel-reviews@example.com Subject: Claude review: Re: [PATCH] drm/panel: fix kernel-doc warning for devm_drm_panel_add() Date: Mon, 25 May 2026 20:23:36 +1000 Message-ID: In-Reply-To: <88c5e061-ebad-4f97-be93-a2b6bca75041@linaro.org> References: <88c5e061-ebad-4f97-be93-a2b6bca75041@linaro.org> <88c5e061-ebad-4f97-be93-a2b6bca75041@linaro.org> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Patch Review **Status: Clean** The patch adds a single line to the kernel-doc comment: ```c /** * devm_drm_panel_add - add a panel to the global registry using devres + * @dev: device to which the panel is attached * @panel: panel to add ``` This correctly documents the `struct device *dev` parameter of `devm_drm_pa= nel_add()` at line 119, matching the actual function signature: ```c int devm_drm_panel_add(struct device *dev, struct drm_panel *panel) ``` - The `@dev` entry is placed before `@panel`, matching the function's param= eter order =E2=80=94 correct kernel-doc convention. - The description "device to which the panel is attached" is accurate =E2= =80=94 `dev` is passed to `devm_add_action_or_reset()` to tie the devres li= fecycle to that device. - The `Reported-by` / `Closes` tags properly reference the kernel test robo= t report. No issues found. This is a minimal, correct fix for the reported warning. --- Generated by Claude Code Patch Reviewer