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/xe/pf: fix kernel-doc warning for SR-IOV VF restore function Date: Fri, 27 Feb 2026 12:40:47 +1000 Message-ID: In-Reply-To: <20260226030038.1182961-6-yujie.liu@intel.com> References: <20260226030038.1182961-1-yujie.liu@intel.com> <20260226030038.1182961-6-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 Patch Review Fixes a typo where a space was used instead of an underscore in the function name, causing kernel-doc to fail to parse it as a valid identifier. ```diff - * xe_gt_sriov_pf_control_trigger restore_vf() - Start an SR-IOV VF migration data restore sequence. + * xe_gt_sriov_pf_control_trigger_restore_vf() - Start an SR-IOV VF migration data restore sequence. ``` This is a good catch - the space instead of underscore (`trigger restore_vf` vs `trigger_restore_vf`) was clearly a typo in the original commit ed46ff0d51e4. --- --- Generated by Claude Code Patch Reviewer