From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mta1.migadu.com (out-220.mta1.migadu.com [95.215.58.220]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id DD78B38AC9A for ; Wed, 19 Aug 2026 21:28:17 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.220 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1787174899; cv=none; b=nPrCtabuORsWlezlVFyY+j6ieijybtH+FBdhD2dmujWxq1gzrcVqX8aYhsfBK3q95Fg8/tMDuXLn+YSPYsbH3fdK0udyrZmge9tN6VY2OEC37ZVUKg/a/95MtXVGoM9NNGMB8RO0DHSJiQuqz24PGpEkML1g+kASfXn21/3KOnc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1787174899; c=relaxed/simple; bh=H5a+lF2Of1lJSMP6LcaW5/240bAK30koiCdiuaHbJ20=; h=From:To:Cc:Subject:Date:Message-ID:Content-Type:MIME-Version; b=JGgumEiMdU2M/vOgmwIqLYwD7in4UY5imY9mWpR9QvoNQe42XzaAavgWgUIOTXkEjbMwvihgxxWdzZXrPRg7JEPpg11FqbQxN4WdVIUlCtP6Nu9qtNpWkqhBc7yghzy+PFKbAy2MZHYmeVBmSdjFE6PF+y9I2vea7qgatZCpEM4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=by6RPhbq; arc=none smtp.client-ip=95.215.58.220 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="by6RPhbq" X-Envelope-To: linux-kernel@vger.kernel.org DKIM-Signature: a=rsa-sha256; bh=H5a+lF2Of1lJSMP6LcaW5/240bAK30koiCdiuaHbJ20=; c=simple/simple; d=linux.dev; h=from:to:subject:date:message-id:mime-version:content-type; s=key1; t=1787174895; v=1; x=1787779695; b=by6RPhbqmDXx6CBWPZJ3vXmHuqJC/0xj8AGO4Tm0XlRyURN1iAc3wXA9//kBWa6p5NDzqeNr e9AK/3Qnpb84nzKAIDXXUfDAsKTfkBPOesg0jY6wjj0X3/g+m9WdJ8qgkPe4+NqKV9qedBzyW32 CenrDQfrVKjqAYFv+tN4fhsw= X-Envelope-To: linux-kernel@vger.kernel.org Received: from Vasilio. (90.193.199.60) by smtp.migadu.com with ESMTPS id 17abddbf796f79fe; Wed, 19 Aug 2026 21:28:05 +0000 X-Mizu-Trace-ID: 17abddbf796f79fe X-Migadu-Flow: FLOW_OUT From: Igor Korotin To: Andi Shyti Cc: linux-i2c@vger.kernel.org, linux-kernel@vger.kernel.org, rust-for-linux@vger.kernel.org, Danilo Krummrich , Miguel Ojeda , Wolfram Sang Subject: [GIT PULL] rust-i2c-next for 7.3 Date: Wed, 19 Aug 2026 22:28:03 +0100 Message-ID: <178717488339.2840.16053648973983973210@linux.dev> Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Hi Andi, First pull request from the rust-i2c tree for you. Thank you. Igor The following changes since commit 527dd7fb6209857f8ff4426055b3a418e60faa8b: Merge branch 'i2c/i2c' into i2c/i2c-next (2026-07-29 23:40:39 +0200) are available in the Git repository at: https://github.com/ikrtn/linux.git tags/rust-i2c-for-7.3 for you to fetch changes up to 61ddec70c9bcc3d4b0471c8683e57d3b03cecf0a: i2c: rust: mark I2cAdapter methods as inline (2026-08-09 12:04:34 +0100) ---------------------------------------------------------------- i2c: rust: mark I2cAdapter methods as inline A single cleanup for the Rust I2C abstractions, targeting 7.3. `I2cAdapter::get`, `inc_ref`, and `dec_ref` are trivial wrappers around `i2c_get_adapter`/`i2c_put_adapter` and were showing up as their own symbols in the build. Mark them `#[inline]` so they get folded into their callers instead. Signed-off-by: Igor Korotin ---------------------------------------------------------------- Nicolás Antinori (1): i2c: rust: mark I2cAdapter methods as inline rust/kernel/i2c.rs | 3 +++ 1 file changed, 3 insertions(+)