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/bridge: ite-it6263: Drop unnecessary blank line Date: Tue, 05 May 2026 08:11:44 +1000 Message-ID: In-Reply-To: <20260504145906.155198-1-biju.das.jz@bp.renesas.com> References: <20260504145906.155198-1-biju.das.jz@bp.renesas.com> <20260504145906.155198-1-biju.das.jz@bp.renesas.com> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Patch Review **Status: Clean** The patch removes a double-blank-line between the `regmap_write()` call and the `return 0;` statement in `it6263_hdmi_write_hdmi_infoframe()`: ```c regmap_write(regmap, HDMI_REG_PKT_NULL_CTRL, ENABLE_PKT | REPEAT_PKT); - return 0; ``` After the patch, a single blank line remains, which is appropriate kernel style for separating the last statement from the return. No issues found. Straightforward style fix. --- Generated by Claude Code Patch Reviewer