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/amd/display: dmub_cmd.h: add missing kernel-doc for enums Date: Tue, 28 Apr 2026 13:53:32 +1000 Message-ID: In-Reply-To: <20260427214122.784024-3-rdunlap@infradead.org> References: <20260427214122.784024-1-rdunlap@infradead.org> <20260427214122.784024-3-rdunlap@infradead.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: Good to merge.** This patch fixes 12 kernel-doc warnings where the comment prototype name di= dn't match the actual type name. Each fix is a one-line change to the `/** = ... */` comment header. All corrections align the documented name with the = actual declaration immediately following: - `dmub_trace_code_t` =E2=86=92 `typedef dmub_trace_code_t` (typedef needs = the keyword) - `struct dmub_shared_state_ips_fw` =E2=86=92 `struct dmub_shared_state_ips= _fw_signals` - `struct dmub_shared_state_ips_signals` =E2=86=92 `struct dmub_shared_stat= e_ips_driver_signals` - `struct dmub_shared_state_cursor_offload_v1` =E2=86=92 `struct dmub_share= d_state_cursor_offload_stream_v1` - `enum dmub_shared_state_feature_common` =E2=86=92 `struct dmub_shared_sta= te_feature_common` - `enum dmub_shared_state_feature_header` =E2=86=92 `struct dmub_shared_sta= te_feature_header` - `struct dmub_cmd_read_modify_write_sequence` =E2=86=92 `struct dmub_rb_cm= d_read_modify_write` - `struct dmub_rb_cmd_cab` =E2=86=92 `struct dmub_rb_cmd_cab_for_ss` - `struct dmub_cmd_set_pixel_clock_data` =E2=86=92 `struct dmub_rb_cmd_set_= pixel_clock` - `union dpia_notify_data_type` =E2=86=92 `union dpia_notification_data` - `struct dmub_rb_cmd_hpd_sense_notify` =E2=86=92 `struct dmub_rb_cmd_hpd_s= ense_notify_data` - `struct dmub_cmd_cable_id_input` =E2=86=92 `struct dmub_cmd_cable_id_outp= ut` Each one is verified by checking that the corrected name matches the actual= declaration that follows the comment block. No issues. --- Generated by Claude Code Patch Reviewer