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/ras: fix kernel-doc warning for ras_eeprom_append() Date: Fri, 27 Feb 2026 12:40:48 +1000 Message-ID: In-Reply-To: <20260226030038.1182961-8-yujie.liu@intel.com> References: <20260226030038.1182961-1-yujie.liu@intel.com> <20260226030038.1182961-8-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 both the function name and a parameter name in the doc comment. ```diff - * ras_core_eeprom_append -- append records to the EEPROM RAS table - * @control: pointer to control structure + * ras_eeprom_append -- append records to the EEPROM RAS table + * @ras_core: pointer to ras core context ``` Both the function name (`ras_core_eeprom_append` -> `ras_eeprom_append`) and the first parameter name (`@control` -> `@ras_core`) are updated to match the actual prototype. Note this patch uses `--` (double dash) style for the doc separator rather than `-` (single dash) which is the more common convention, but that matches the existing style in this file so it's fine. --- Generated by Claude Code Patch Reviewer