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/msm/hdmi: Consistently use u32 instead of uint32_t Date: Thu, 12 Mar 2026 06:45:27 +1000 Message-ID: In-Reply-To: <20260311-drm-msm-hdmi-cleanup-v1-4-c5535245f6de@oss.qualcomm.com> References: <20260311-drm-msm-hdmi-cleanup-v1-0-c5535245f6de@oss.qualcomm.com> <20260311-drm-msm-hdmi-cleanup-v1-4-c5535245f6de@oss.qualcomm.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 Standard kernel coding style cleanup. The changes are mechanical `uint32_t`= =E2=86=92 `u32` replacements across hdmi.c, hdmi_audio.c, hdmi_bridge.c, h= dmi_hpd.c, and hdmi_i2c.c. One minor note: in `hdmi_audio.c`, two separate declaration lines are merge= d into one: ```c - uint32_t acr_pkt_ctrl, vbi_pkt_ctrl, aud_pkt_ctrl; - uint32_t audio_config; + u32 acr_pkt_ctrl, vbi_pkt_ctrl, aud_pkt_ctrl, audio_config; ``` This is fine but slightly beyond the stated scope of "type changes only." N= ot a problem. --- Generated by Claude Code Patch Reviewer