From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtpout-03.galae.net (smtpout-03.galae.net [185.246.85.4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id DD5932690D9 for ; Tue, 2 Dec 2025 15:38:12 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.246.85.4 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1764689899; cv=none; b=jRaxO6Xsdez3Ec3FE9lDNpPhTd5yjedO/iuEi/+FLokFIQzJukXgg/0OpSwSX7m4nt6CUyPEWr69qfWdxhlemLG8GxDkLPN6Cn4Hhmsejt06nogEzsc9u+mHvo3fr6Hj6d0H9nw2NtAyVW1sKFps7Yd4cYZ1qz2hSjeq+x0L2Q8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1764689899; c=relaxed/simple; bh=3LKPTimmQWSwDYvjejAh5C1N5EY1eyMQ67P4rA4pYBU=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=pEBdEIlo/U/IhCbPC0/torOgPkAcGtZ6rRP1qnJOykaeij9Din33gqyoEmciVmTrPSecS39FAVay6GNmghG/ppUEnJQsPBP1POSwmyUGNnJ0tUIArsX8OgHGNsmjrNKDF4bWwBbu+F7b2/I2xGyvVSiGuFFBHwm4coBdLbWeuyw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com; spf=pass smtp.mailfrom=bootlin.com; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b=ZKySZHw5; arc=none smtp.client-ip=185.246.85.4 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=bootlin.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b="ZKySZHw5" Received: from smtpout-01.galae.net (smtpout-01.galae.net [212.83.139.233]) by smtpout-03.galae.net (Postfix) with ESMTPS id B78F34E41925; Tue, 2 Dec 2025 15:38:10 +0000 (UTC) Received: from mail.galae.net (mail.galae.net [212.83.136.155]) by smtpout-01.galae.net (Postfix) with ESMTPS id 8EFAD606D6; Tue, 2 Dec 2025 15:38:10 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id 9D57811919C1C; Tue, 2 Dec 2025 16:38:08 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=dkim; t=1764689890; h=from:subject:date:message-id:to:cc:mime-version: content-transfer-encoding; bh=z7m1z8RSfppe1UBUpQ7IF8vIA87TYKDCi6MHsfmBLKU=; b=ZKySZHw5clOZO9WlAXFhIyLKMEhknYtIxDzXEsinjln+QrTwj/yklUW5kyNODAuX7Uuduq 0rkcRXQ3TrWOtx4WOZZUPBdaVXPfUaMWAJBqCGdoh/+7I+RBuU15EAbW84C+yPkpuJBAgU Q79q6ra0sGnd3BZqNreYFWHKpeZfe718Es0+AlA72Lf6P9yZDNZtul7bnErHSAZonTXzPu S/51f7UAxASFMRBeEWO53jhTseBbmiXurmcF6FtCTGePOYvHqRGKiW6BIDrgFLWLO6oR4y +iDk1u7ydawtCJr0VXZidVbuVakHFsixjHZ2/eYTf9sEnbUs0O7dy0TpGNHwiQ== From: alexandre.belloni@bootlin.com To: Alexandre Belloni , Frank Li Cc: kernel test robot , linux-i3c@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [PATCH 1/2] i3c: fix I3C_SDR bit number Date: Tue, 2 Dec 2025 16:38:02 +0100 Message-ID: <20251202153804.2640623-1-alexandre.belloni@bootlin.com> X-Mailer: git-send-email 2.52.0 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Last-TLS-Session-Version: TLSv1.3 From: Alexandre Belloni 0x31 is decimal 49 and doesn't fit in a 32 bit integer, switch to the intended decimal 31. Reported-by: kernel test robot Closes: https://lore.kernel.org/oe-kbuild-all/202512020956.Dnz8A2H0-lkp@intel.com/ Closes: https://lore.kernel.org/oe-kbuild-all/202512021613.97jVprvJ-lkp@intel.com/ Closes: https://lore.kernel.org/oe-kbuild-all/202512021644.lp8ZMSx5-lkp@intel.com/ Signed-off-by: Alexandre Belloni --- include/linux/i3c/device.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/i3c/device.h b/include/linux/i3c/device.h index ae0662d9d77e..9fcb6410a584 100644 --- a/include/linux/i3c/device.h +++ b/include/linux/i3c/device.h @@ -51,7 +51,7 @@ enum i3c_xfer_mode { I3C_HDR_TSP = 1, I3C_HDR_TSL = 2, /* Use for default SDR transfer mode */ - I3C_SDR = 0x31, + I3C_SDR = 31, }; /** -- 2.52.0