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/i915/psr: Write the PR config DPCDs in burst mode Date: Thu, 12 Mar 2026 06:55:30 +1000 Message-ID: In-Reply-To: <20260311113611.3393194-13-ankit.k.nautiyal@intel.com> References: <20260311113611.3393194-1-ankit.k.nautiyal@intel.com> <20260311113611.3393194-13-ankit.k.nautiyal@intel.com> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Patch Review Converts two `drm_dp_dpcd_writeb()` calls to a single burst `drm_dp_dpcd_wr= ite()` for PANEL_REPLAY_CONFIG (0x1b0) and CONFIG2 (0x1b1). Good optimizati= on. **Minor:** The error check `ret < 0 || ret !=3D sizeof(buf)` =E2=80=94 the = `ret < 0` is redundant since `ret !=3D sizeof(buf)` would also catch negati= ve values. Not a bug, just slightly verbose. --- Generated by Claude Code Patch Reviewer