public inbox for drm-ai-reviews@public-inbox.freedesktop.org
 help / color / mirror / Atom feed
From: Claude Code Review Bot <claude-review@example.com>
To: dri-devel-reviews@example.com
Subject: Claude review: Re: [PATCH] drm/bridge: waveshare-dsi: Fix signedness bug
Date: Mon, 09 Mar 2026 08:10:08 +1000	[thread overview]
Message-ID: <review-patch1-fe3c0b16-1d29-4bca-bff3-15217f9b73f7@mailbox.org> (raw)
In-Reply-To: <fe3c0b16-1d29-4bca-bff3-15217f9b73f7@mailbox.org>

Patch Review

**Correctness:** The fix is correct. By storing the return value in the already-declared `int ret` variable, the negative error check works properly. The `else` branch assigns `dsi->lanes = ret` only when `ret >= 0`, which is safe since lane counts 1–4 fit in an unsigned int.

**Commit message:** Well-written. It clearly describes the bug, the fix, includes the Smatch warning output, and has appropriate `Reported-by`, `Closes`, and `Fixes` tags.

**Minor nit:** The `dev_warn` format string uses `%d` for `ret`, which is correct (signed int). The original code used `%d` for `dsi->lanes` (unsigned), which was technically a format mismatch — so the patch also incidentally fixes that.

**Code:**
```c
-	dsi->lanes = drm_of_get_data_lanes_count_ep(dev->of_node, 0, 0, 1, 4);
-	if (dsi->lanes < 0) {
+	ret = drm_of_get_data_lanes_count_ep(dev->of_node, 0, 0, 1, 4);
+	if (ret < 0) {
 		dev_warn(dev, "Invalid or missing DSI lane count %d, falling back to 2 lanes\n",
-			 dsi->lanes);
+			 ret);
 		dsi->lanes = 2;	/* Old DT backward compatibility */
+	} else {
+		dsi->lanes = ret;
 	}
```

No issues found. The patch is minimal, targeted, and correct.

---
Generated by Claude Code Patch Reviewer

      parent reply	other threads:[~2026-03-08 22:10 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-07  3:32 [PATCH] drm/bridge: waveshare-dsi: Fix signedness bug Ethan Tidmore
2026-03-07  3:44 ` Marek Vasut
2026-03-07  6:42   ` Ethan Tidmore
2026-03-07 15:57     ` Marek Vasut
2026-03-08 22:10   ` Claude review: " Claude Code Review Bot
2026-03-08 22:10   ` Claude Code Review Bot [this message]

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-patch1-fe3c0b16-1d29-4bca-bff3-15217f9b73f7@mailbox.org \
    --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