From mboxrd@z Thu Jan 1 00:00:00 1970 From: Claude Code Review Bot To: dri-devel-reviews@example.com Subject: Claude review: staging: media: tegra-video: tegra20: expand format support with RAW8/10 and YUV422/YUV420p 1X16 Date: Wed, 04 Mar 2026 07:48:08 +1000 Message-ID: In-Reply-To: <20260303084239.15007-14-clamor95@gmail.com> References: <20260303084239.15007-1-clamor95@gmail.com> <20260303084239.15007-14-clamor95@gmail.com> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Patch Review Adds Bayer RAW8/RAW10 and 1X16 YUV variants. RAW formats use `TEGRA_VI_OUT_2` while YUV continues to use `TEGRA_VI_OUT_1`. The output format selection logic in `tegra20_camera_capture_setup`: ```c enum tegra_vi_out output_channel = (data_type == TEGRA_IMAGE_DT_RAW8 || data_type == TEGRA_IMAGE_DT_RAW10) ? TEGRA_VI_OUT_2 : TEGRA_VI_OUT_1; ``` This is clean and consistent across the VIP start_streaming function as well. **No issues.** --- Generated by Claude Code Patch Reviewer