From: Claude Code Review Bot <claude-review@example.com>
To: dri-devel-reviews@example.com
Subject: Claude review: bus: mhi: Move sahara protocol driver under drivers/bus/mhi
Date: Wed, 11 Mar 2026 13:35:22 +1000 [thread overview]
Message-ID: <review-patch2-20260310-sahara_protocol_new_v2-v3-2-994ea4b0d5ad@oss.qualcomm.com> (raw)
In-Reply-To: <20260310-sahara_protocol_new_v2-v3-2-994ea4b0d5ad@oss.qualcomm.com>
Patch Review
Moves the driver, creates Kconfig/Makefile, and converts to `module_init`/`module_exit`.
**Issues:**
- **Copyright change is suspicious.** The original file had:
```c
// SPDX-License-Identifier: GPL-2.0-only
/* Copyright (c) 2024 Qualcomm Innovation Center, Inc. All rights reserved. */
```
The new file has:
```c
// SPDX-License-Identifier: GPL-2.0
/* Copyright (c) 2018-2020, The Linux Foundation. All rights reserved. */
```
Changing `GPL-2.0-only` to `GPL-2.0` (which in SPDX means "GPL-2.0-only" anyway but is ambiguous) and replacing the copyright holder with a different entity/date range is a red flag. This needs justification.
- **QAIC init/exit error path change looks buggy.** The patch modifies `qaic_init()` but the goto labels appear swapped:
```c
ret = pci_register_driver(&qaic_pci_driver);
if (ret) {
pr_debug("qaic: pci_register_driver failed %d\n", ret);
- return ret;
+ goto free_pci;
}
ret = mhi_driver_register(&qaic_mhi_driver);
if (ret) {
pr_debug("qaic: mhi_driver_register failed %d\n", ret);
- goto free_pci;
+ goto free_mhi;
}
```
After the `sahara_register()` call is removed, if `mhi_driver_register` fails, the code now jumps to `free_mhi` which would unregister MHI (which just failed), instead of `free_pci` which should unregister the PCI driver. I'd need to see the full error path, but this looks inverted — the original code had `free_pci` for MHI failure (correct: unwind PCI), and now after removing sahara, the labels may have shifted incorrectly.
- The Kconfig `select FW_LOADER_COMPRESS` and `select FW_LOADER_COMPRESS_XZ` / `FW_LOADER_COMPRESS_ZSTD` is heavy-handed. Not all firmware necessarily needs compressed loading. This should be documented or justified.
---
Generated by Claude Code Patch Reviewer
next prev parent reply other threads:[~2026-03-11 3:35 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-10 7:21 [PATCH v3 0/9] Qualcomm Sahara protocol enhancements Kishore Batta
2026-03-10 7:21 ` [PATCH v3 1/9] Add documentation for Sahara protocol Kishore Batta
2026-03-11 3:35 ` Claude review: " Claude Code Review Bot
2026-03-10 7:21 ` [PATCH v3 2/9] bus: mhi: Move sahara protocol driver under drivers/bus/mhi Kishore Batta
2026-03-11 3:35 ` Claude Code Review Bot [this message]
2026-03-10 7:22 ` [PATCH v3 3/9] bus: mhi: Match devices exposing the protocol on the SAHARA channel Kishore Batta
2026-03-11 3:35 ` Claude review: " Claude Code Review Bot
2026-03-10 7:22 ` [PATCH v3 4/9] bus: mhi: Centralize firmware image table selection at probe time Kishore Batta
2026-03-11 3:35 ` Claude review: " Claude Code Review Bot
2026-03-10 7:22 ` [PATCH v3 5/9] bus: mhi: Add QDU100 variant and image_id firmware fallback Kishore Batta
2026-03-11 3:35 ` Claude review: " Claude Code Review Bot
2026-03-10 7:22 ` [PATCH v3 6/9] bus: mhi: Load DDR training data using per-device serial number Kishore Batta
2026-03-11 3:35 ` Claude review: " Claude Code Review Bot
2026-03-10 7:22 ` [PATCH v3 7/9] bus: mhi: Capture DDR training data using command mode Kishore Batta
2026-03-11 3:35 ` Claude review: " Claude Code Review Bot
2026-03-10 7:22 ` [PATCH v3 8/9] bus: mhi: Expose DDR training data via controller sysfs Kishore Batta
2026-03-11 3:35 ` Claude review: " Claude Code Review Bot
2026-03-10 7:22 ` [PATCH v3 9/9] Documentation: ABI: Add sysfs ABI documentation for DDR training data Kishore Batta
2026-03-11 3:35 ` Claude review: " Claude Code Review Bot
2026-03-11 3:35 ` Claude review: Qualcomm Sahara protocol enhancements Claude Code Review Bot
-- strict thread matches above, loose matches on Subject: below --
2026-03-19 6:31 [PATCH v4 0/9] " Kishore Batta
2026-03-19 6:31 ` [PATCH v4 2/9] bus: mhi: Move sahara protocol driver under drivers/bus/mhi Kishore Batta
2026-03-21 18:44 ` Claude review: " Claude Code Review Bot
2026-03-07 11:41 [PATCH v2 0/9] Qualcomm Sahara protocol enhancements Kishore Batta
2026-03-07 11:41 ` [PATCH v2 2/9] bus: mhi: Move sahara protocol driver under drivers/bus/mhi Kishore Batta
2026-03-08 22:09 ` Claude review: " Claude Code Review Bot
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=review-patch2-20260310-sahara_protocol_new_v2-v3-2-994ea4b0d5ad@oss.qualcomm.com \
--to=claude-review@example.com \
--cc=dri-devel-reviews@example.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox